diff --git a/wscript b/wscript index 895b2238..13e38328 100644 --- a/wscript +++ b/wscript @@ -13,7 +13,7 @@ VERSION = '0.1.0' try: git = subprocess.Popen (['git', 'rev-parse', '--short', 'HEAD'], - stdout=subprocess.PIPE) + stdout=subprocess.PIPE, stderr=subprocess.PIPE) if not git.wait (): VERSION = (VERSION + '-' + git.stdout.read ()).strip () except: