i18n: add hint to digest mismatch message stable
authorWagner Bruna <wbruna@softwareexpress.com.br>
Thu, 23 Oct 2014 12:35:10 -0200
branchstable
changeset 23076 c312ef382033
parent 23075 2b3189ec3d14
child 23077 605a8cb61a0c
i18n: add hint to digest mismatch message
mercurial/util.py
--- a/mercurial/util.py	Thu Oct 23 12:28:00 2014 -0200
+++ b/mercurial/util.py	Thu Oct 23 12:35:10 2014 -0200
@@ -211,6 +211,7 @@
                 (self._size, self._got))
         for k, v in self._digests.items():
             if v != self._digester[k]:
+                # i18n: first parameter is a digest name
                 raise Abort(_('%s mismatch: expected %s, got %s') %
                     (k, v, self._digester[k]))