summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
Diffstat (limited to 'alot')
-rw-r--r--alot/buffers.py4
-rw-r--r--alot/helper.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index e6f6d42c..b73b2ecd 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -225,13 +225,13 @@ class SearchBuffer(Buffer):
def __str__(self):
formatstring = '[search] for "%s" (%d message%s)'
return formatstring % (self.querystring, self.result_count,
- 's' * (not (self.result_count == 1)))
+ 's' if self.result_count > 1 else '')
def get_info(self):
info = {}
info['querystring'] = self.querystring
info['result_count'] = self.result_count
- info['result_count_positive'] = 's' * (not (self.result_count == 1))
+ info['result_count_positive'] = 's' if self.result_count > 1 else ''
return info
def cleanup(self):
diff --git a/alot/helper.py b/alot/helper.py
index a79f72cb..253fa899 100644
--- a/alot/helper.py
+++ b/alot/helper.py
@@ -442,7 +442,7 @@ def libmagic_version_at_least(version):
# if it's not present, we can't guess right, so let's assume False
return False
- return (magic_wrapper.magic_version >= version)
+ return magic_wrapper.magic_version >= version
# TODO: make this work on blobs, not paths