mirror of
https://github.com/mnaberez/py65.git
synced 2024-10-31 22:06:12 +00:00
Compare commits
2 Commits
fd342c1b6b
...
fc3ecd9ebf
Author | SHA1 | Date | |
---|---|---|---|
|
fc3ecd9ebf | ||
|
f3d2eb2f22 |
@ -156,7 +156,8 @@ class Monitor(cmd.Cmd):
|
|||||||
self._output(usage)
|
self._output(usage)
|
||||||
|
|
||||||
def onecmd(self, line):
|
def onecmd(self, line):
|
||||||
line = self._preprocess_line(line)
|
if line:
|
||||||
|
line = self._preprocess_line(line)
|
||||||
|
|
||||||
result = None
|
result = None
|
||||||
try:
|
try:
|
||||||
@ -167,7 +168,7 @@ class Monitor(cmd.Cmd):
|
|||||||
error = ''.join(traceback.format_exception(*sys.exc_info()))
|
error = ''.join(traceback.format_exception(*sys.exc_info()))
|
||||||
self._output(error)
|
self._output(error)
|
||||||
|
|
||||||
if not line.startswith("quit"):
|
if line and not line.startswith("quit"):
|
||||||
self._output_mpu_status()
|
self._output_mpu_status()
|
||||||
|
|
||||||
# Switch back to the previous input mode.
|
# Switch back to the previous input mode.
|
||||||
|
Loading…
Reference in New Issue
Block a user