Mercurial > public > mercurial-scm > hg
diff hgext/convert/git.py @ 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 | fc004d16633f |
children | 11aad09a6370 |
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)