Merge branch 'fix_version' into 'master'
Fix invalid dev version string See merge request gajim/gajim!157
This commit is contained in:
commit
359d327b53
|
@ -6,7 +6,7 @@ try:
|
||||||
node = subprocess.Popen('git rev-parse --short=12 HEAD', shell=True,
|
node = subprocess.Popen('git rev-parse --short=12 HEAD', shell=True,
|
||||||
stdout=subprocess.PIPE).communicate()[0]
|
stdout=subprocess.PIPE).communicate()[0]
|
||||||
if node:
|
if node:
|
||||||
__version__ += '-' + node.decode('utf-8').strip()
|
__version__ += '+' + node.decode('utf-8').strip()
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue