diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-15 08:41:11 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-15 08:41:11 (GMT) |
commit | 4b501e6c7dd65ecb4a469a0fbc8a8fc8d62a7922 (patch) | |
tree | 77433ea02b19de3b866d25a75ef4483e0ebd6d1b /Lib/bdb.py | |
parent | 7e75f1aafba2e34ed5daef9e633684cf173f7a13 (diff) | |
download | cpython-4b501e6c7dd65ecb4a469a0fbc8a8fc8d62a7922.zip cpython-4b501e6c7dd65ecb4a469a0fbc8a8fc8d62a7922.tar.gz cpython-4b501e6c7dd65ecb4a469a0fbc8a8fc8d62a7922.tar.bz2 |
Patch #1191700: Adjust column alignment in bdb breakpoint lists.
Backported to 2.4.
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -479,10 +479,10 @@ class Breakpoint: else: disp = 'keep ' if self.enabled: - disp = disp + 'yes' + disp = disp + 'yes ' else: - disp = disp + 'no ' - print '%-4dbreakpoint %s at %s:%d' % (self.number, disp, + disp = disp + 'no ' + print '%-4dbreakpoint %s at %s:%d' % (self.number, disp, self.file, self.line) if self.cond: print '\tstop only if %s' % (self.cond,) |