summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>2010-08-05 23:04:04 +0200
committerRonny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>2010-08-05 23:04:04 +0200
commitf74af4ea53b1e5d847c014719e4ebc4b18b5bc85 (patch)
tree16e948f5fab701470346b6022bed4c9348789db9
parente7e717965362a39ffb483f1d695aab56416b2091 (diff)
downloadsetuptools-scm-f74af4ea53b1e5d847c014719e4ebc4b18b5bc85.tar.gz
dont clean out the env
-rw-r--r--hgdistver.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/hgdistver.py b/hgdistver.py
index 897bd63..4d8d253 100644
--- a/hgdistver.py
+++ b/hgdistver.py
@@ -6,7 +6,6 @@ def getoutput(cmd, cwd='.'):
shell=True,
stdout=subprocess.PIPE,
cwd=cwd,
- env={},
)
out, _ = p.communicate()
return out.decode() # will kill us sometimes