author | timeless <timeless@mozdev.org> |
Sun, 01 May 2011 18:57:11 +0200 | |
changeset 14177 | fc004d16633f |
parent 14176 | dea68bddfb87 |
child 14178 | 524c560e2d32 |
--- 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')