mirror of
https://github.com/noDRM/DeDRM_tools.git
synced 2024-12-29 21:07:39 +06:00
return str from load_resource()
This commit is contained in:
parent
0e0d7d8b14
commit
a1059650f6
@ -175,7 +175,7 @@ class ConfigWidget(QWidget):
|
|||||||
def load_resource(self, name):
|
def load_resource(self, name):
|
||||||
with ZipFile(self.plugin_path, 'r') as zf:
|
with ZipFile(self.plugin_path, 'r') as zf:
|
||||||
if name in zf.namelist():
|
if name in zf.namelist():
|
||||||
return zf.read(name)
|
return zf.read(name).decode('utf-8')
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user