Remove file argument from logging.error in manager_server.py

Otherwise this results in:
```python
TypeError: Logger._log() got an unexpected keyword argument 'file' 
```
This commit is contained in:
Bas Nijholt 2025-07-07 22:47:42 +02:00 committed by GitHub
parent 092a7a5f3f
commit cff2d0c29d
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' return 'success'
except Exception as e: 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}" return f"Model installation error: {model_url}"