hgext/convert/common.py
changeset 6049 348132c112cf
parent 6035 df659eb23360
child 6332 950e72fc7cf3
--- a/hgext/convert/common.py	Fri Feb 08 18:31:55 2008 -0200
+++ b/hgext/convert/common.py	Fri Feb 08 13:56:29 2008 +0100
@@ -249,7 +249,7 @@
     def runlines(self, cmd, *args, **kwargs):
         fp = self._run(cmd, *args, **kwargs)
         output = fp.readlines()
-        self.ui.debug(output)
+        self.ui.debug(''.join(output))
         return output, fp.close()
 
     def checkexit(self, status, output=''):
@@ -267,7 +267,7 @@
 
     def runlines0(self, cmd, *args, **kwargs):
         output, status = self.runlines(cmd, *args, **kwargs)
-        self.checkexit(status, output)
+        self.checkexit(status, ''.join(output))
         return output
 
     def getargmax(self):