mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Suppress console error on failing auto updates
This commit is contained in:
parent
3cb05c5120
commit
0b070f0900
1 changed files with 7 additions and 4 deletions
|
|
@ -128,10 +128,13 @@ class StartupTasks:
|
||||||
|
|
||||||
async def execute(self):
|
async def execute(self):
|
||||||
self.setup_config()
|
self.setup_config()
|
||||||
|
try:
|
||||||
await asyncio.gather(
|
await asyncio.gather(
|
||||||
self.update_plugin_manager(),
|
self.update_plugin_manager(),
|
||||||
self.update_plugins(),
|
self.update_plugins(),
|
||||||
)
|
)
|
||||||
|
except urllib.error.URLError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class Category:
|
class Category:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue