diff options
Diffstat (limited to 'python/pluginmanager.py')
| -rw-r--r-- | python/pluginmanager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py index a164c4f6..3add086b 100644 --- a/python/pluginmanager.py +++ b/python/pluginmanager.py @@ -97,7 +97,7 @@ class RepoPlugin(object): count = ctypes.c_ulonglong(0) platforms = core.BNPluginGetApis(self.handle, count) for i in range(count.value): - result.append(platforms[i]) + result.append(platforms[i].decode("utf-8")) core.BNFreePluginPlatforms(platforms, count) return result @@ -185,7 +185,7 @@ class RepoPlugin(object): count = ctypes.c_ulonglong(0) platforms = core.BNPluginGetPlatforms(self.handle, count) for i in range(count.value): - result.append(platforms[i]) + result.append(platforms[i].decode("utf-8")) core.BNFreePluginPlatforms(platforms, count) return result |
