convert to string for py3

This commit is contained in:
Luke Campagnola 2015-02-04 08:06:56 -05:00
parent d3c2ad874f
commit 9cce7a1da3
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ def getGitVersion(tagPrefix):
#branch = getGitBranch()
#gitVersion = gitVersion + "-%s-%s" % (branch, head[:10])
gitVersion = check_output(['git', 'describe', '--tags']).strip()
gitVersion = check_output(['git', 'describe', '--tags']).strip().decode('utf-8')
# any uncommitted modifications?
modified = False