mirror of
https://github.com/mnaberez/py65.git
synced 2024-10-31 22:06:12 +00:00
Merge f3d2eb2f22
into 95e152d6cb
This commit is contained in:
commit
90ee2c8bee
@ -156,7 +156,8 @@ class Monitor(cmd.Cmd):
|
||||
self._output(usage)
|
||||
|
||||
def onecmd(self, line):
|
||||
line = self._preprocess_line(line)
|
||||
if line:
|
||||
line = self._preprocess_line(line)
|
||||
|
||||
result = None
|
||||
try:
|
||||
@ -167,7 +168,7 @@ class Monitor(cmd.Cmd):
|
||||
error = ''.join(traceback.format_exception(e))
|
||||
self._output(error)
|
||||
|
||||
if not line.startswith("quit"):
|
||||
if line and not line.startswith("quit"):
|
||||
self._output_mpu_status()
|
||||
|
||||
# Switch back to the previous input mode.
|
||||
|
Loading…
Reference in New Issue
Block a user