From 863a13943c692ad388d6d719b0c6db4d72ba1d0c Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 21 Jan 2015 14:47:10 +0100 Subject: Fix a small error in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1b517838..b5a97fb2 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ if os.path.exists(git_dir): try: import subprocess result = subprocess.Popen(['git', '--git-dir', git_dir, 'describe'], - stdout=subprocess.PIPE) + stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) result.wait() data = result.stdout.read().decode('utf-8', errors='ignore') -- cgit v1.2.3