changeset 15200 | 797bf1dc1ff8 |
parent 15198 | 62dc0e7ab092 |
child 15202 | 0150741caace |
--- a/mercurial/commands.py Sat Oct 01 16:42:39 2011 -0400 +++ b/mercurial/commands.py Fri Oct 07 15:36:50 2011 -0500 @@ -1854,9 +1854,10 @@ problems += 1 # templates - ui.status(_("Checking templates...\n")) + import templater + p = templater.templatepath() + ui.status(_("Checking templates (%s)...\n") % ' '.join(p)) try: - import templater templater.templater(templater.templatepath("map-cmdline.default")) except Exception, inst: ui.write(" %s\n" % inst)