fix: toolhub request_timeout should be str

This commit is contained in:
lanvent
2023-04-17 12:00:28 +08:00
parent 65f20ff2c1
commit 2f732e5493
2 changed files with 2 additions and 2 deletions

View File

@@ -148,7 +148,7 @@ class PluginManager:
try:
instance = plugincls()
except Exception as e:
logger.warn("Failed to init %s, diabled. %s" % (name, e))
logger.error("Failed to init %s, diabled. %s" % (name, e))
self.disable_plugin(name)
failed_plugins.append(name)
continue