Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 13037:9beac11b8c56
localrepo: move string formatting out of gettext call
author | Martin Geisler <mg@aragost.com> |
---|---|
date | Wed, 24 Nov 2010 13:25:12 +0100 |
parents | e41e2b79883d |
children | 6c375e07d673 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Mon Nov 22 13:11:46 2010 -0600 +++ b/mercurial/localrepo.py Wed Nov 24 13:25:12 2010 +0100 @@ -187,7 +187,7 @@ if not warned[0]: warned[0] = True self.ui.warn(_("warning: ignoring unknown" - " working parent %s!\n" % short(node))) + " working parent %s!\n") % short(node)) return nullid return dirstate.dirstate(self.opener, self.ui, self.root, validate)