mercurial/templater.py
changeset 8517 110763cc3ab0
parent 8492 d72d1a97408a
child 9372 2484868cffde
--- a/mercurial/templater.py	Tue May 19 09:57:06 2009 +0200
+++ b/mercurial/templater.py	Sun May 17 16:25:48 2009 +0200
@@ -74,7 +74,7 @@
         key, format = expr.split('%')
         v = get(key)
         if not hasattr(v, '__iter__'):
-            raise SyntaxError(_("Error expanding '%s%%%s'") % (key, format))
+            raise SyntaxError(_("error expanding '%s%%%s'") % (key, format))
         lm = map.copy()
         for i in v:
             lm.update(i)