We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 444e96a commit fc09f7cCopy full SHA for fc09f7c
invokeai/app/services/model_install/model_install_default.py
@@ -532,7 +532,9 @@ def _install_next_item(self) -> None:
532
try:
533
rmtree(job._install_tmpdir)
534
except OSError as e:
535
- self._logger.warning(f"Failed to remove temporary directory {job._install_tmpdir}: {e}. It will be removed on next server start.")
+ self._logger.warning(
536
+ f"Failed to remove temporary directory {job._install_tmpdir}: {e}. It will be removed on next server start."
537
+ )
538
self._install_completed_event.set()
539
self._install_queue.task_done()
540
self._logger.info(f"Installer thread {threading.get_ident()} exiting")
0 commit comments