mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Fix class instance not created
This commit is contained in:
parent
d9d5a4ff13
commit
02530f050e
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
||||||
"versions": {
|
"versions": {
|
||||||
|
"1.0.17": null,
|
||||||
"1.0.16": {
|
"1.0.16": {
|
||||||
"api_version": 8,
|
"api_version": 8,
|
||||||
"commit_sha": "0839999",
|
"commit_sha": "0839999",
|
||||||
|
|
|
||||||
|
|
@ -2408,7 +2408,7 @@ class PluginManagerSettingsWindow(popup.PopupWindow):
|
||||||
async def update(self, to_version=None, commit_sha=None):
|
async def update(self, to_version=None, commit_sha=None):
|
||||||
try:
|
try:
|
||||||
await self._plugin_manager.update(to_version, commit_sha)
|
await self._plugin_manager.update(to_version, commit_sha)
|
||||||
PluginManager.setup_changelog()
|
await self._plugin_manager.setup_changelog()
|
||||||
except MD5CheckSumFailed:
|
except MD5CheckSumFailed:
|
||||||
bui.screenmessage("MD5 checksum failed during plugin manager update", color=(1, 0, 0))
|
bui.screenmessage("MD5 checksum failed during plugin manager update", color=(1, 0, 0))
|
||||||
bui.getsound('error').play()
|
bui.getsound('error').play()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue