mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-08 12:12:39 +01:00
fix addons load in python2
This commit is contained in:
parent
2dd7636134
commit
6da8f97e37
@ -146,8 +146,8 @@ class Plugin:
|
||||
def loadfile(self, filename):
|
||||
try:
|
||||
self.filename = filename
|
||||
with open(filename, encoding='utf-8') as f:
|
||||
data = f.read()
|
||||
with open(filename, 'rb') as f:
|
||||
data = f.read().decode('utf-8')
|
||||
compiled = compile_file(data, filename)
|
||||
exec(compiled, self.globals)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user