Rev 2265: Make tags output less wide in http://sourcefrog.net/bzr/tags
Martin Pool
mbp at sourcefrog.net
Mon Feb 26 05:57:09 GMT 2007
At http://sourcefrog.net/bzr/tags
------------------------------------------------------------
revno: 2265
revision-id: mbp at sourcefrog.net-20070226055708-llf8iqw3ny1f3al6
parent: mbp at sourcefrog.net-20070226053612-21tf7x7uvb4qru1b
committer: Martin Pool <mbp at sourcefrog.net>
branch nick: tags
timestamp: Mon 2007-02-26 16:57:08 +1100
message:
Make tags output less wide
modified:
bzrlib/builtins.py builtins.py-20050830033751-fc01482b9ca23183
=== modified file 'bzrlib/builtins.py'
--- a/bzrlib/builtins.py 2007-02-26 05:36:12 +0000
+++ b/bzrlib/builtins.py 2007-02-26 05:57:08 +0000
@@ -3251,7 +3251,7 @@
):
branch, relpath = Branch.open_containing(directory)
for tag_name, target in sorted(branch.tags.get_tag_dict().items()):
- self.outf.write('%-40s %s\n' % (tag_name, target))
+ self.outf.write('%-20s %s\n' % (tag_name, target))
# command-line interpretation helper for merge-related commands
More information about the bazaar-commits
mailing list