Merge pull request #1398 from xxyzz/config

return str from load_resource()
This commit is contained in:
Apprentice Harper 2020-12-04 12:52:42 +00:00 committed by GitHub
commit 13e9a14907
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ class ConfigWidget(QWidget):
def load_resource(self, name):
with ZipFile(self.plugin_path, 'r') as zf:
if name in zf.namelist():
return zf.read(name)
return zf.read(name).decode('utf-8')
return ""