Hack for python 3 compatibility (Fedora 31).
authorCarl Hetherington <cth@carlh.net>
Mon, 4 Nov 2019 21:04:44 +0000 (22:04 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 8 Nov 2019 23:17:25 +0000 (00:17 +0100)
wscript

diff --git a/wscript b/wscript
index d4f68c3af746d176463115b4d2c79e35e2c68911..ff53acff927d4b226b56e86a43697380a39decc3 100644 (file)
--- a/wscript
+++ b/wscript
@@ -39,6 +39,12 @@ APPNAME = 'dcpomatic'
 this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
 last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
 
 this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
 last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
 
+# Python 2/3 compatibility; I don't really understand what's going on here
+if not isinstance(this_version, str):
+    this_version = this_version.decode('utf-8')
+if not isinstance(last_version, str):
+    last_version = last_version.decode('utf-8')
+
 if this_version == '':
     VERSION = '%sdevel' % last_version[1:].strip()
 else:
 if this_version == '':
     VERSION = '%sdevel' % last_version[1:].strip()
 else: