mercurial/templater.py
changeset 26587 56b2bcea2529
parent 26564 bed9e6c706f6
child 27293 9e06e7fb037d
--- a/mercurial/templater.py	Mon Oct 05 22:49:24 2015 -0700
+++ b/mercurial/templater.py	Thu Oct 08 12:55:45 2015 -0700
@@ -270,7 +270,7 @@
             dt = arg[1][1]
         else:
             dt = arg[1]
-        raise util.Abort(_("template filter '%s' is not compatible with "
+        raise error.Abort(_("template filter '%s' is not compatible with "
                            "keyword '%s'") % (filt.func_name, dt))
 
 def buildmap(exp, context):
@@ -840,7 +840,7 @@
             stylelist.append(split[1])
     return ", ".join(sorted(stylelist))
 
-class TemplateNotFound(util.Abort):
+class TemplateNotFound(error.Abort):
     pass
 
 class templater(object):
@@ -873,7 +873,7 @@
         if not mapfile:
             return
         if not os.path.exists(mapfile):
-            raise util.Abort(_("style '%s' not found") % mapfile,
+            raise error.Abort(_("style '%s' not found") % mapfile,
                              hint=_("available styles: %s") % stylelist())
 
         conf = config.config(includepaths=templatepaths())