Mercurial > hg
changeset 3889:a0b18a8e0460
Fix a pygettext complaint
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 14 Dec 2006 17:32:25 -0600 |
parents | 660504812daf |
children | 2eec996f2fb9 |
files | mercurial/ui.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/ui.py Thu Dec 14 17:32:00 2006 -0600 +++ b/mercurial/ui.py Thu Dec 14 17:32:25 2006 -0600 @@ -349,7 +349,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):