]> granicus.if.org Git - python/commitdiff
Fix a bogus end=' ' here.
authorGuido van Rossum <guido@python.org>
Fri, 9 Feb 2007 22:16:54 +0000 (22:16 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 9 Feb 2007 22:16:54 +0000 (22:16 +0000)
Lib/pdb.py

index 634991383c97b613185a48e4f95638421451a4c3..11135eb44178872aa65f260f7b6f8090c6940145 100755 (executable)
@@ -740,7 +740,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
                     else: s = s + ' '
                     if lineno == self.curframe.f_lineno:
                         s = s + '->'
-                    print(s + '\t' + line, end=' ', file=self.stdout)
+                    print(s + '\t' + line, end='', file=self.stdout)
                     self.lineno = lineno
         except KeyboardInterrupt:
             pass