aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 0d132b13..0b4f1601 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ if version.endswith(('a', 'b', 'rc')):
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
if out:
- version += '+' + out.decode('utf-8').strip()
+ version += '+g' + out.decode('utf-8').strip()
except Exception:
pass