summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-05-15 13:52:26 +0200
committerAnton Khirnov <anton@khirnov.net>2021-05-15 13:52:26 +0200
commitf5e9e0803d952157afe3362edfa96716725e381d (patch)
tree9eba0b44ab46c1a28afe41e233f2e1b84de02459
parentb7370e42cdc877c39e74e6932b6ae6bf8e1e09f6 (diff)
commands/envelope: fix accessing the attachment filename
-rw-r--r--alot/commands/envelope.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index 52232a3c..4b485425 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -82,7 +82,7 @@ class UnattachCommand(Command):
if self.hint is not None:
for a in envelope.attachments:
- if a.filename and self.hint in a.filename():
+ if a.filename and self.hint in a.filename:
envelope.attachments.remove(a)
else:
envelope.attachments = []