mnaberez / py65

Emulate 6502-based microcomputer systems in Python
BSD 3-Clause "New" or "Revised" License
234 stars 68 forks source link

Add string formatting to load option for Windows backslashes in paths #50

Closed SamCoVT closed 5 years ago

SamCoVT commented 5 years ago

Fix for #49. The -r option uses % style string formatting and works fine, so I just added that to the -l option. The % formatting seems to properly pass along the backslashes in a windows path instead of seeing them as escaping characters.

mnaberez commented 5 years ago

Thanks!