comparison hgext/churn.py @ 16743:38caf405d010

hgext: mark all first-party extensions as such
author Augie Fackler <raf@durin42.com>
date Tue, 15 May 2012 14:37:49 -0500
parents ce292f1379ba
children 21b12b22c024
comparison
equal deleted inserted replaced
16742:973671fc0804 16743:38caf405d010
10 10
11 from mercurial.i18n import _ 11 from mercurial.i18n import _
12 from mercurial import patch, cmdutil, scmutil, util, templater, commands 12 from mercurial import patch, cmdutil, scmutil, util, templater, commands
13 import os 13 import os
14 import time, datetime 14 import time, datetime
15
16 testedwith = 'internal'
15 17
16 def maketemplater(ui, repo, tmpl): 18 def maketemplater(ui, repo, tmpl):
17 tmpl = templater.parsestring(tmpl, quoted=False) 19 tmpl = templater.parsestring(tmpl, quoted=False)
18 try: 20 try:
19 t = cmdutil.changeset_templater(ui, repo, False, None, None, False) 21 t = cmdutil.changeset_templater(ui, repo, False, None, None, False)