summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 = []