From: Georg Brandl Date: Mon, 2 Aug 2010 12:40:22 +0000 (+0000) Subject: Fix softspace relic. X-Git-Tag: v3.2a2~543 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc50c696ab7e091cef5d88d98be44cef15efcc1f;p=python Fix softspace relic. --- diff --git a/Lib/trace.py b/Lib/trace.py index 1a4b0dbc34..7fffe8685c 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -626,7 +626,7 @@ class Trace: print('%.2f' % (time.time() - self.start_time), end=' ') bname = os.path.basename(filename) print("%s(%d): %s" % (bname, lineno, - linecache.getline(filename, lineno)), end=' ') + linecache.getline(filename, lineno)), end='') return self.localtrace def localtrace_trace(self, frame, why, arg): @@ -639,7 +639,7 @@ class Trace: print('%.2f' % (time.time() - self.start_time), end=' ') bname = os.path.basename(filename) print("%s(%d): %s" % (bname, lineno, - linecache.getline(filename, lineno)), end=' ') + linecache.getline(filename, lineno)), end='') return self.localtrace def localtrace_count(self, frame, why, arg):