Mercurial > hg
changeset 3984:f82b3f915605
Fix a pygettext complaint
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 14 Dec 2006 17:32:25 -0600 |
parents | c22251414b46 |
children | 4874ca8a53c1 |
files | mercurial/ui.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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):