From 02530f050e64890f81a3e7beeaa6f39e867cd22a Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Tue, 23 Apr 2024 02:31:25 +0530 Subject: [PATCH] Fix class instance not created --- index.json | 1 + plugin_manager.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index 8e02d1c..b7e105b 100644 --- a/index.json +++ b/index.json @@ -1,6 +1,7 @@ { "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { + "1.0.17": null, "1.0.16": { "api_version": 8, "commit_sha": "0839999", diff --git a/plugin_manager.py b/plugin_manager.py index 72e8c0a..bea4f69 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -2408,7 +2408,7 @@ class PluginManagerSettingsWindow(popup.PopupWindow): async def update(self, to_version=None, commit_sha=None): try: await self._plugin_manager.update(to_version, commit_sha) - PluginManager.setup_changelog() + await self._plugin_manager.setup_changelog() except MD5CheckSumFailed: bui.screenmessage("MD5 checksum failed during plugin manager update", color=(1, 0, 0)) bui.getsound('error').play()