Mercurial > public > mercurial-scm > hg-stable
diff mercurial/sshrepo.py @ 9467:4c041f1ee1b4
do not attempt to translate ui.debug output
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 19 Sep 2009 01:15:38 +0200 |
parents | f8ff65a83169 |
children | 0262bb59016f |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Fri Sep 18 17:37:51 2009 +0200 +++ b/mercurial/sshrepo.py Sat Sep 19 01:15:38 2009 +0200 @@ -75,7 +75,7 @@ if lines[-1] == "1\n" and l == "\n": break if l: - ui.debug(_("remote: "), l) + ui.debug("remote: ", l) lines.append(l) max_noise -= 1 else: @@ -113,7 +113,7 @@ __del__ = cleanup def do_cmd(self, cmd, **args): - self.ui.debug(_("sending %s command\n") % cmd) + self.ui.debug("sending %s command\n" % cmd) self.pipeo.write("%s\n" % cmd) for k, v in args.iteritems(): self.pipeo.write("%s %d\n" % (k, len(v)))