Fix python string encoding in wscript. v0.16.1
authorCarl Hetherington <cth@carlh.net>
Tue, 12 Mar 2019 00:32:18 +0000 (00:32 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 12 Mar 2019 00:32:18 +0000 (00:32 +0000)
wscript

diff --git a/wscript b/wscript
index ed589caa22be391c3b803f43e71711b9b2a1519a..658a7b76d303f967b0c985a93441f3563b9e1b4f 100644 (file)
--- a/wscript
+++ b/wscript
@@ -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: