histedit, i18n: replace '+' with concatenation to make hggettext happy stable
authorWagner Bruna <wbruna@softwareexpress.com.br>
Tue, 22 Apr 2014 10:14:16 -0300
branchstable
changeset 21175 dae36d3e1c60
parent 21174 7991df9d2f20
child 21176 70fcb0a71445
histedit, i18n: replace '+' with concatenation to make hggettext happy
hgext/histedit.py
--- a/hgext/histedit.py	Tue Apr 22 10:12:21 2014 -0300
+++ b/hgext/histedit.py	Tue Apr 22 10:14:16 2014 -0300
@@ -570,7 +570,7 @@
         else:
             rootrevs = list(repo.set('roots(%lr)', revs))
             if len(rootrevs) != 1:
-                raise util.Abort(_('The specified revisions must have ' +
+                raise util.Abort(_('The specified revisions must have '
                     'exactly one common root'))
             root = rootrevs[0].node()