mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
Merge pull request #639 from InvisibleUp/master
Allow for scons to run on Python 3
This commit is contained in:
commit
b96972a4b9
@ -1,9 +1,10 @@
|
||||
import glob
|
||||
import sys
|
||||
|
||||
# establish UTF-8 encoding
|
||||
reload(sys)
|
||||
sys.setdefaultencoding('utf-8')
|
||||
# establish UTF-8 encoding for Python 2
|
||||
if sys.version_info < (3, 0):
|
||||
reload(sys)
|
||||
sys.setdefaultencoding('utf-8')
|
||||
|
||||
# create build environment
|
||||
env = Environment()
|
||||
|
Loading…
Reference in New Issue
Block a user