1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Merge pull request #622 from TomHarte/SConstructUTF

Adds recommended fix for 0xc3 in position 12 error.
This commit is contained in:
Thomas Harte 2019-05-30 22:25:57 -04:00 committed by GitHub
commit d80b0cbf90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,9 @@
import glob
import sys
# establish UTF-8 encoding
reload(sys)
sys.setdefaultencoding('utf-8')
# create build environment
env = Environment()