diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-12 00:32:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-03-12 00:32:18 +0000 |
| commit | fd7e004e0b0a08a9d9b323888c7f60834c93eafc (patch) | |
| tree | 1f0fd105dbb654cc7d97e1b794cc256aed7c3345 /wscript | |
| parent | 4dfe693bbe01810274f370a7e791a9f508f7e8f6 (diff) | |
Fix python string encoding in wscript.v0.16.1
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -27,11 +27,6 @@ APPNAME = 'libcxml' 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] -if isinstance(this_version, bytes): - this_version = this_version.decode('UTF-8') -if isinstance(last_version, bytes): - last_version = last_version.decode('UTF-8') - if this_version == '': VERSION = '%sdevel' % last_version[1:].strip() else: |
