--- a/hgext/churn.py Mon Jan 25 00:05:22 2010 -0600
+++ b/hgext/churn.py Mon Jan 25 00:05:27 2010 -0600
@@ -169,7 +169,7 @@
'*' * charnum(sum(count)))
def charnum(count):
- return int(round(count*width/maxcount))
+ return int(round(count * width / maxcount))
for name, count in rate:
ui.write(format(name, count))
@@ -180,7 +180,8 @@
(churn,
[('r', 'rev', [], _('count rate for the specified revision or range')),
('d', 'date', '', _('count rate for revisions matching date spec')),
- ('t', 'template', '{author|email}', _('template to group changesets')),
+ ('t', 'template', '{author|email}',
+ _('template to group changesets')),
('f', 'dateformat', '',
_('strftime-compatible format for grouping by date')),
('c', 'changesets', False, _('count rate by number of changesets')),