convert to string for py3

This commit is contained in:
Luke Campagnola 2015-02-04 08:06:56 -05:00
parent d3c2ad874f
commit 9cce7a1da3

View File

@ -372,7 +372,7 @@ def getGitVersion(tagPrefix):
#branch = getGitBranch() #branch = getGitBranch()
#gitVersion = gitVersion + "-%s-%s" % (branch, head[:10]) #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? # any uncommitted modifications?
modified = False modified = False