diff options
| 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 |
| commit | e310df70938baf61b849f309f295d0b6c54bd0d3 (patch) | |
| tree | 7af33aff69550a9a29f6fc4077908b1e8a6a5114 /notmuch-git.py | |
| parent | 5f3e5dd4111ee996e1729294eea39b59137395ef (diff) | |
CLI/git: fix name error
Diffstat (limited to 'notmuch-git.py')
| -rw-r--r-- | notmuch-git.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
