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:
Bas Nijholt 2025-07-07 16:48:16 -07:00 committed by GitHub
parent 092a7a5f3f
commit ad09e53f60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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}"