diff options
author | Guido van Rossum <guido@python.org> | 1998-07-20 21:22:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-07-20 21:22:08 (GMT) |
commit | c612681b20f2ff8786067a3d8c6d041bc64d0db0 (patch) | |
tree | 90fdc20bb357909be0615d2c189b2365de31ba95 /Lib/cmd.py | |
parent | d623d20e7d624097e7c27365cc291bdf2538edc1 (diff) | |
download | cpython-c612681b20f2ff8786067a3d8c6d041bc64d0db0.zip cpython-c612681b20f2ff8786067a3d8c6d041bc64d0db0.tar.gz cpython-c612681b20f2ff8786067a3d8c6d041bc64d0db0.tar.bz2 |
Fix another bug in ESR's changes. In order to work properly,
onecmd(line) must return the value returned by emptyline() or
default(line).
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r-- | Lib/cmd.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 |