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 | d30e587e00d0c01c87bfbbdb5c694131ffd0ea70 (patch) | |
tree | 2998304de699a44d98685cc10f4f503b15b4a848 | |
parent | 5b48c457365d386a511607b52717161a48250d46 (diff) | |
download | cpython-git-d30e587e00d0c01c87bfbbdb5c694131ffd0ea70.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) |