summaryrefslogtreecommitdiff
path: root/hgext/churn.py
diff options
context:
space:
mode:
Diffstat (limited to 'hgext/churn.py')
-rw-r--r--hgext/churn.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/hgext/churn.py b/hgext/churn.py
index 29796f0..b4883ef 100644
--- a/hgext/churn.py
+++ b/hgext/churn.py
@@ -13,8 +13,6 @@ from mercurial import patch, cmdutil, scmutil, util, templater, commands
import os
import time, datetime
-testedwith = 'internal'
-
def maketemplater(ui, repo, tmpl):
tmpl = templater.parsestring(tmpl, quoted=False)
try:
@@ -69,7 +67,7 @@ def countrate(ui, repo, amap, *pats, **opts):
else:
parents = ctx.parents()
if len(parents) > 1:
- ui.note(_('revision %d is a merge, ignoring...\n') % (rev,))
+ ui.note(_('Revision %d is a merge, ignoring...\n') % (rev,))
return
ctx1 = parents[0]
@@ -137,7 +135,7 @@ def churn(ui, repo, *pats, **opts):
except ValueError:
l = l.strip()
if l:
- ui.warn(_("skipping malformed alias: %s\n") % l)
+ ui.warn(_("skipping malformed alias: %s\n" % l))
continue
rate = countrate(ui, repo, amap, *pats, **opts).items()