From a2465d3a56023f53ae09dfd82a27fcc6571b1054 Mon Sep 17 00:00:00 2001 From: Oleksii Shevchuk Date: Thu, 20 Oct 2016 23:27:32 +0300 Subject: [PATCH] Looks like encodings module is not required here --- client/sources-linux/gen_python_bootloader.py | 1 - 1 file changed, 1 deletion(-) diff --git a/client/sources-linux/gen_python_bootloader.py b/client/sources-linux/gen_python_bootloader.py index fcbee703..a8304020 100644 --- a/client/sources-linux/gen_python_bootloader.py +++ b/client/sources-linux/gen_python_bootloader.py @@ -49,7 +49,6 @@ if __name__=="__main__": code_bytes.append(compile(get_load_module_code(code,"pupyimporter")+"\n", "", "exec")) code_bytes.append(compile("import pupyimporter;pupyimporter.install();\n", "", "exec")) - code_bytes.append(compile("import encodings;\n", "", "exec")) with open(os.path.join("..",'..','pupy',"pp.py")) as f: code=f.read() code_bytes.append(compile(code+"\n", "", "exec"))