Rev 37: Update display_credits to handle unprintable chars. in http://bazaar.launchpad.net/~bzr/bzr-stats/trunk
John Arbash Meinel
john at arbash-meinel.com
Fri Jan 15 22:22:54 GMT 2010
At http://bazaar.launchpad.net/~bzr/bzr-stats/trunk
------------------------------------------------------------
revno: 37
revision-id: john at arbash-meinel.com-20100115222233-uxiz2ue75fh1csbx
parent: john at arbash-meinel.com-20100115222117-1nz460o7dt06ahjq
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: trunk
timestamp: Fri 2010-01-15 16:22:33 -0600
message:
Update display_credits to handle unprintable chars.
-------------- next part --------------
=== modified file '__init__.py'
--- a/__init__.py 2010-01-15 22:21:17 +0000
+++ b/__init__.py 2010-01-15 22:22:33 +0000
@@ -349,15 +349,15 @@
return ret, total
-def display_credits(credits):
+def display_credits(credits, to_file):
(coders, documenters, artists, translators) = credits
def print_section(name, lst):
if len(lst) == 0:
return
- print "%s:" % name
+ to_file.write("%s:\n" % name)
for name in lst:
- print "%s" % name
- print ""
+ to_file.write("%s\n" % name)
+ to_file.write('\n')
print_section("Code", coders)
print_section("Documentation", documenters)
print_section("Art", artists)
@@ -426,7 +426,7 @@
a_branch.lock_read()
try:
credits = find_credits(a_branch.repository, last_rev)
- display_credits(credits)
+ display_credits(credits, self.outf)
finally:
a_branch.unlock()
More information about the bazaar-commits
mailing list