Mercurial > public > mercurial-scm > hg-stable
diff mercurial/ui.py @ 3984:f82b3f915605
Fix a pygettext complaint
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 14 Dec 2006 17:32:25 -0600 |
parents | 9f5c46c50118 |
children | e492ab235b4d 78a0dd93db0b |
line wrap: on
line diff
--- a/mercurial/ui.py Thu Dec 14 00:41:11 2006 +0100 +++ b/mercurial/ui.py Thu Dec 14 17:32:25 2006 -0600 @@ -350,7 +350,7 @@ user = '%s@%s' % (util.getuser(), socket.getfqdn()) except KeyError: raise util.Abort(_("Please specify a username.")) - self.warn(_("No username found, using '%s' instead\n" % user)) + self.warn(_("No username found, using '%s' instead\n") % user) return user def shortuser(self, user):