changeset 14735:d297ee0b2d94 stable

convert: fix git convert on solaris - it cannot remove environment variables
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 25 Jun 2011 01:55:15 +0200
parents f924cf565f36
children 65f8f98aa924
files hgext/convert/git.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/convert/git.py	Sat Jun 25 01:55:13 2011 +0200
+++ b/hgext/convert/git.py	Sat Jun 25 01:55:15 2011 +0200
@@ -37,7 +37,7 @@
                 (sin, so, se) = util.popen3('GIT_DIR=%s %s' % (self.path, s))
                 return so
             else:
-                util.popen('GIT_DIR=%s %s' % (self.path, s), 'rb')
+                return util.popen('GIT_DIR=%s %s' % (self.path, s), 'rb')
 
     def gitread(self, s):
         fh = self.gitopen(s)