]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
unnecessary semicolon
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 26 Jan 2001 17:15:18 +0000 (17:15 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 26 Jan 2001 17:15:18 +0000 (17:15 +0000)
Lib/cmd.py

index f2894a94130f8d74c4b84704fd19bf50ff9252e7..2b20f954eaa2012288071c7a4b77740d52a5f508 100644 (file)
@@ -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)