summaryrefslogtreecommitdiffstats
path: root/Lib/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r--Lib/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index f2894a9..2b20f95 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)