diff -r 1214c64c592b -r 4c041f1ee1b4 mercurial/sshrepo.py --- 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)))