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:
@@ -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}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user