commit | be74a378eb1676bdef826034aff96feb74141e23 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Sep 11 21:17:13 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Sep 11 21:17:13 2009 +0000 |
tree | 81b236b715b7be03cf9b21b37f87dfe9de704b4e | |
parent | 1f316975ac23378c805d5816a15250e3134a1e1e [diff] [blame] |
#6888 fix the alias command with no arguments
diff --git a/Lib/pdb.py b/Lib/pdb.py index e272f2e..627cd29 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py
@@ -841,8 +841,7 @@ def do_alias(self, arg): args = arg.split() if len(args) == 0: - keys = self.aliases.keys() - keys.sort() + keys = sorted(self.aliases.keys()) for alias in keys: print("%s = %s" % (alias, self.aliases[alias]), file=self.stdout) return