1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-07-05 19:28:57 +00:00

Merge pull request #50 from SamCoVT/bugfix/windows_load

Add string formatting to load option for Windows backslashes in paths
This commit is contained in:
Mike Naberezny 2018-12-03 17:58:15 -08:00 committed by GitHub
commit f34b4efa5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ class Monitor(cmd.Cmd):
self._reset(self.mpu_type, self.getc_addr, self.putc_addr)
if load is not None:
self.do_load(load)
self.do_load("%r" % load)
if goto is not None:
self.do_goto(goto)