diff --git a/setup.py b/setup.py index 05aa52d81..20fe1617b 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ if path: version = None try: proc = subprocess.Popen('git show HEAD --format=%ci', shell=True, - stdout=subprocess.PIPE) + stdout=subprocess.PIPE, stderr=subprocess.PIPE) version = proc.stdout.readline() \ .strip() \ .replace(' +', '+') \