mercurial/sshrepo.py
changeset 9467 4c041f1ee1b4
parent 8563 f8ff65a83169
child 9861 0262bb59016f
--- 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)))