diff options
author | Patrick Griffis <tingping@tingping.se> | 2021-10-02 09:49:17 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2021-10-02 09:49:17 -0500 |
commit | 6fd8a8f9bf48562fbbc42f908321b67d436c097e (patch) | |
tree | 1e7e0efc4060de6d4828f6ce8afade84ad82a1c2 /plugins/python/python.py | |
parent | 40399b1cb6f59f3eaf88e95cee59b53a499837a9 (diff) |
python: Open all scripts with utf-8 encoding
Diffstat (limited to 'plugins/python/python.py')
-rw-r--r-- | plugins/python/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/python/python.py b/plugins/python/python.py index 7bd327e3..1adcde98 100644 --- a/plugins/python/python.py +++ b/plugins/python/python.py @@ -146,7 +146,7 @@ class Plugin: def loadfile(self, filename): try: self.filename = filename - with open(filename) as f: + with open(filename, encoding='utf-8') as f: data = f.read() compiled = compile_file(data, filename) exec(compiled, self.globals) |