notmuch.git  about / heads / tags
Unnamed repository; edit this file 'description' to name the repository.
   commit e310df70938baf61b849f309f295d0b6c54bd0d3 (patch)
   parent 5f3e5dd4 CLI/git: remove unused import
     tree 7af33aff69550a9a29f6fc4077908b1e8a6a5114
   author Jakub Wilk <jwilk@jwilk.net>       2024-01-12 17:27:49 +0100
committer David Bremner <david@tethera.net>  2024-01-14 08:55:06 -0400

CLI/git: fix name error

---
 notmuch-git.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/notmuch-git.py b/notmuch-git.py
index a11501ae..29f75531 100644
--- a/notmuch-git.py
+++ b/notmuch-git.py
@@ -247,7 +247,7 @@ def count_messages(prefix=None):
         stdout=_subprocess.PIPE, wait=True)
     if status != 0:
         _LOG.error("failed to run notmuch config")
-        sys.exit(1)
+        _sys.exit(1)
     return int(stdout.rstrip())
 
 def get_tags(prefix=None):


glossary
--------
Commit objects reference one tree, and zero or more parents.

Single parent commits can typically generate a patch in
unified diff format via `git format-patch'.

Multiple parents means the commit is a merge.

Root commits have no ancestor.  Note that it is
possible to have multiple root commits when merging independent histories.

Every commit references one top-level tree object.

git clone https://yhetil.org/notmuch.git