We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73f4dd5 commit c820627Copy full SHA for c820627
1 file changed
comfyui_manager/common/git_compat.py
@@ -755,7 +755,7 @@ def submodule_update(self):
755
try:
756
self._repo.submodules.init()
757
self._repo.submodules.update()
758
- except Exception as e:
+ except Exception:
759
import subprocess
760
761
result = subprocess.run(
@@ -768,7 +768,7 @@ def submodule_update(self):
768
f"submodule update failed (exit {result.returncode}): "
769
f"{result.stderr.decode(errors='replace')}")
770
except FileNotFoundError:
771
- print(f"[ComfyUI-Manager] pygit2: submodule update requires system git (not installed)", file=sys.stderr)
+ print("[ComfyUI-Manager] pygit2: submodule update requires system git (not installed)", file=sys.stderr)
772
except GitCommandError:
773
raise
774
except Exception as sub_e:
0 commit comments