mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 01:57:04 +08:00
Remove file argument from logging.error in manager_server.py (#1977)
Otherwise this results in: ```python TypeError: Logger._log() got an unexpected keyword argument 'file' ```
This commit is contained in:
parent
092a7a5f3f
commit
ad09e53f60
@ -589,7 +589,7 @@ async def task_worker():
|
||||
return 'success'
|
||||
|
||||
except Exception as e:
|
||||
logging.error(f"[ComfyUI-Manager] ERROR: {e}", file=sys.stderr)
|
||||
logging.error(f"[ComfyUI-Manager] ERROR: {e}")
|
||||
|
||||
return f"Model installation error: {model_url}"
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user