diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-11-04 22:04:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-11-09 00:17:25 +0100 |
| commit | ab2772c73140786ed167e97b527647c342d5a56f (patch) | |
| tree | 94e5700e153c09fd04f8bec0829f30c3af95777b /wscript | |
| parent | 6797a5b3823b0fbedd1ce55ae5c864fb4961d4b3 (diff) | |
Hack for python 3 compatibility (Fedora 31).
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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] +# 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: |
