mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-09 06:04:31 +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…
x
Reference in New Issue
Block a user