Skip to content
Snippets Groups Projects
Commit f97b799f authored by André's avatar André
Browse files

Fix invalid dev version string

parent 8d43907b
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ try:
node = subprocess.Popen('git rev-parse --short=12 HEAD', shell=True,
stdout=subprocess.PIPE).communicate()[0]
if node:
__version__ += '-' + node.decode('utf-8').strip()
__version__ += '+' + node.decode('utf-8').strip()
except Exception:
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment