diff options
author | Georg Brandl <georg@python.org> | 2010-08-02 12:40:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-02 12:40:22 (GMT) |
commit | dc50c696ab7e091cef5d88d98be44cef15efcc1f (patch) | |
tree | 9966981929a317c698f9aba4cea151b5cdb7f03c /Lib/trace.py | |
parent | 24085d794071dcb9e5de294d246f28cf6f3a6dc9 (diff) | |
download | cpython-dc50c696ab7e091cef5d88d98be44cef15efcc1f.zip cpython-dc50c696ab7e091cef5d88d98be44cef15efcc1f.tar.gz cpython-dc50c696ab7e091cef5d88d98be44cef15efcc1f.tar.bz2 |
Fix softspace relic.
Diffstat (limited to 'Lib/trace.py')
-rw-r--r-- | Lib/trace.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 1a4b0db..7fffe86 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): |