Commit 5d29c1ba authored by Guido van Rossum's avatar Guido van Rossum

Fix another bug in ESR's changes. In order to work properly,

onecmd(line) must return the value returned by emptyline() or
default(line).
parent d0656c39
......@@ -91,11 +91,9 @@ class Cmd:
if hasattr(self, 'do_shell'):
line = 'shell'
else:
self.default(line)
return
return self.default(line)
elif not line:
self.emptyline()
return
return self.emptyline()
self.lastcmd = line
i, n = 0, len(line)
while i < n and line[i] in self.identchars: i = i+1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment