diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-26 17:15:18 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-26 17:15:18 (GMT) |
commit | d30e587e00d0c01c87bfbbdb5c694131ffd0ea70 (patch) | |
tree | 2998304de699a44d98685cc10f4f503b15b4a848 /Lib | |
parent | 5b48c457365d386a511607b52717161a48250d46 (diff) | |
download | cpython-d30e587e00d0c01c87bfbbdb5c694131ffd0ea70.zip cpython-d30e587e00d0c01c87bfbbdb5c694131ffd0ea70.tar.gz cpython-d30e587e00d0c01c87bfbbdb5c694131ffd0ea70.tar.bz2 |
unnecessary semicolon
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |