summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-09-29 21:37:55 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-09-29 21:38:08 -0400
commite1e4f9c9ddfe5fc610615c0848a97b02b498ee97 (patch)
tree290532376ae2c155c7dba02a3d55ec96078ef1f6 /wscript
parent853bc97f340a935739fb9fb9b5fa1b3659c14faa (diff)
revert stupid change that breaks python3 and was probably related to other python-related issues fixed when support for python3 was added to our wscript files
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 2 insertions, 6 deletions
diff --git a/wscript b/wscript
index ee00359ba4..1a300c8f06 100644
--- a/wscript
+++ b/wscript
@@ -43,12 +43,8 @@ else:
MICRO = '0'
V = MAJOR + '.' + MINOR + '.' + MICRO
-#
-# it is important that VERSION *not* be unicode string
-# because if it is, it breaks waf somehow.
-#
-VERSION = V.encode ('ascii', 'ignore')
-PROGRAM_VERSION = MAJOR.encode ('ascii', 'ignore')
+VERSION = V
+PROGRAM_VERSION = MAJOR
# Mandatory variables
top = '.'