X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-git.py;h=f188660c816ef264255308c8bf0c02d8e79dede2;hp=a11501ae4cfeb51988fc06b1015739d95d9fcf5d;hb=HEAD;hpb=5f3e5dd4111ee996e1729294eea39b59137395ef diff --git a/notmuch-git.py b/notmuch-git.py index a11501ae..97073c80 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): @@ -376,7 +376,7 @@ def check_safe_fraction(status): total = count_messages (TAG_PREFIX) if total == 0: - _LOG.error('No existing tags with given prefix, stopping.'.format(safe)) + _LOG.error('No existing tags with given prefix, stopping.') _LOG.error('Use --force to override.') exit(1) change = len(status['added'])+len(status['deleted'])