diff hgext/convert/git.py @ 14177:fc004d16633f

convert: fix error in git solaris code
author timeless <timeless@mozdev.org>
date Sun, 01 May 2011 18:57:11 +0200
parents 6b7077df4aa5
children d297ee0b2d94
line wrap: on
line diff
--- a/hgext/convert/git.py	Sun May 01 17:36:16 2011 +0200
+++ b/hgext/convert/git.py	Sun May 01 18:57:11 2011 +0200
@@ -35,7 +35,7 @@
         def gitopen(self, s, noerr=False):
             if noerr:
                 (sin, so, se) = util.popen3('GIT_DIR=%s %s' % (self.path, s))
-                return stdout
+                return so
             else:
                 util.popen('GIT_DIR=%s %s' % (self.path, s), 'rb')