claude-commit 0.4.0__tar.gz → 0.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {claude_commit-0.4.0/src/claude_commit.egg-info → claude_commit-0.6.0}/PKG-INFO +1 -1
- {claude_commit-0.4.0 → claude_commit-0.6.0}/pyproject.toml +1 -1
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit/main.py +6 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0/src/claude_commit.egg-info}/PKG-INFO +1 -1
- {claude_commit-0.4.0 → claude_commit-0.6.0}/LICENSE +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/README.md +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/setup.cfg +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit/__init__.py +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit/config.py +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit.egg-info/SOURCES.txt +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit.egg-info/dependency_links.txt +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit.egg-info/entry_points.txt +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit.egg-info/requires.txt +0 -0
- {claude_commit-0.4.0 → claude_commit-0.6.0}/src/claude_commit.egg-info/top_level.txt +0 -0
|
@@ -480,6 +480,12 @@ Begin your analysis now.
|
|
|
480
480
|
|
|
481
481
|
return commit_message
|
|
482
482
|
|
|
483
|
+
except KeyboardInterrupt:
|
|
484
|
+
# Handle Ctrl+C gracefully without showing traceback
|
|
485
|
+
if "progress" in locals() and progress is not None:
|
|
486
|
+
progress.stop()
|
|
487
|
+
# Don't print anything here - let main() handle the user message
|
|
488
|
+
return None
|
|
483
489
|
except CLINotFoundError:
|
|
484
490
|
# Stop progress on error
|
|
485
491
|
if "progress" in locals() and progress is not None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|