From 349ad80acdc1f972e30a38133651cac8f8ff8054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 May 2020 18:25:04 +0200 Subject: [PATCH] build: trivial style fix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ce9a251..12e1783 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def get_version(): with open('VERSION', 'r') as v: return v.read() if os.path.exists('.git'): - p = subprocess.Popen(['git','describe','--dirty=.dirty','--match=v*'], + p = subprocess.Popen(['git', 'describe', '--dirty=.dirty', '--match=v*'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) result = p.communicate()[0] if p.returncode == 0: -- GitLab