1 parent 8b0cfe2 commit 79f4f35Copy full SHA for 79f4f35
1 file changed
pauldot/commands/tool.py
@@ -193,7 +193,7 @@ def tool_add(
193
if cfg.git.auto_commit:
194
git.commit(repo_path, f"pauldot: add tool {name}")
195
console.print("✓ Committed to dotfiles repo.")
196
- except (FileNotFoundError, RuntimeError):
+ except FileNotFoundError, RuntimeError:
197
pass # auto-commit is best-effort
198
199
@@ -216,5 +216,5 @@ def tool_remove(name: str) -> None:
216
217
git.commit(repo_path, f"pauldot: remove tool {name}")
218
219
220
0 commit comments