diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-16 10:50:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-12-16 10:50:14 +0100 |
| commit | 684bb4b2f7f0b13c8050e87d6a8aed21a37a11cf (patch) | |
| tree | 9817a59673b493a2ae9b55a7a55b068bb1a5cdd9 /wscript | |
| parent | 70f08257122cabe3b25481e27efedfd4b79903a3 (diff) | |
Fix ./waf distv1.8.41
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,9 +44,9 @@ this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdo last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0].decode('UTF-8') if this_version == '': - VERSION = '%sdevel' % last_version[1:].strip() + VERSION = '%sdevel' % last_version[1:].strip().encode('UTF-8') else: - VERSION = this_version[1:].strip() + VERSION = this_version[1:].strip().encode('UTF-8') API_VERSION = '-1.0' |
