Commit eeaf3af
committed
fix: Replace Unicode arrows with ASCII for Windows compatibility
Fixes UnicodeEncodeError on Windows when running sync commands.
Issue:
- Windows console (cp1252 encoding) cannot display Unicode arrow character (→)
- Error: 'charmap' codec can't encode character '\u2192'
- Occurred at project.py:425 and project.py:474
Solution:
- Changed 'local → cloud' to 'local -> cloud'
- Maintains readability while ensuring Windows compatibility
Testing:
- Verified on Windows 11 ARM64
- All sync commands now execute without encoding errors
- Part of comprehensive SPEC-20 testing (PR #405)
Related: PR #411 (incomplete Windows Unicode fix)1 parent 021af74 commit eeaf3af
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
422 | 422 | | |
423 | 423 | | |
424 | 424 | | |
425 | | - | |
| 425 | + | |
426 | 426 | | |
427 | 427 | | |
428 | 428 | | |
| |||
471 | 471 | | |
472 | 472 | | |
473 | 473 | | |
474 | | - | |
| 474 | + | |
475 | 475 | | |
476 | 476 | | |
477 | 477 | | |
| |||
0 commit comments