aboutsummaryrefslogtreecommitdiff
path: root/notmuch-git.py
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2024-01-12 17:27:50 +0100
committerDavid Bremner <david@tethera.net>2024-01-14 08:55:20 -0400
commit2f0320c5f24adfee026e938ebc379ca90e3045d3 (patch)
treefd25feeacea9ee74f4980d29b7cb2cd8bead3dc9 /notmuch-git.py
parente310df70938baf61b849f309f295d0b6c54bd0d3 (diff)
CLI/git: remove no-op format() call
Diffstat (limited to 'notmuch-git.py')
-rw-r--r--notmuch-git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-git.py b/notmuch-git.py
index 29f75531..97073c80 100644
--- a/notmuch-git.py
+++ b/notmuch-git.py
@@ -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'])