diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-26 17:15:18 +0000 |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-26 17:15:18 +0000 |
commit | 2e6251713cdcc1bffd5ba29620a4f10cba04e1e4 (patch) | |
tree | 4a03967af563a5fe938f1e4ea1c8a398537eb2f8 | |
parent | 38ec7baf1cb609279dace85216540cb358b60c45 (diff) | |
download | cpython-2e6251713cdcc1bffd5ba29620a4f10cba04e1e4.tar.gz |
unnecessary semicolon
-rw-r--r-- | Lib/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py index f2894a9413..2b20f954ea 100644 --- a/Lib/cmd.py +++ b/Lib/cmd.py @@ -177,7 +177,7 @@ class Cmd: def print_topics(self, header, cmds, cmdlen, maxcol): if cmds: - print header; + print header if self.ruler: print self.ruler * len(header) (cmds_per_line,junk)=divmod(maxcol,cmdlen) |