1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-29 00:29:34 +00:00

Adds recommended fix for 0xc3 in position 12 error.

This commit is contained in:
Thomas Harte 2019-05-30 22:20:15 -04:00
parent 9c3c2192dd
commit e88ef30ce6

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()