From ed5c77c4136edebfbfad3dd4588d2646979b9f3a Mon Sep 17 00:00:00 2001 From: 4eadd52d <4eadd52d@gmail.com> Date: Fri, 19 May 2017 18:08:54 +1000 Subject: [PATCH 1/1] Fix compile errors on some systems --- compile.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compile.py b/compile.py index 442ee8b..ac95273 100644 --- a/compile.py +++ b/compile.py @@ -6,7 +6,7 @@ import datetime # It removes script and style tags and replaces with the file content. -f = open('src/index.html') +f = open('src/index.html', "r", encoding="utf-8") page = f.read() f.close() @@ -18,7 +18,7 @@ scripts = scriptsFinder.findall(page) for script in scripts: filename = os.path.join("src", script) - s = open(filename) + s = open(filename, "r", encoding="utf-8") scriptContent = "" % s.read() s.close() scriptTag = """""" % script @@ -32,7 +32,7 @@ styles = stylesFinder.findall(page) for style in styles: filename = os.path.join("src", style) - s = open(filename) + s = open(filename, "r", encoding="utf-8") styleContent = "" % s.read() s.close() styleTag = """""" % style @@ -41,7 +41,7 @@ for style in styles: # Write the standalone file -f = open('bip39-standalone.html', 'w') +f = open('bip39-standalone.html', 'w', encoding="utf-8") f.write(page) f.close() -- 2.41.0