summaryrefslogtreecommitdiff
path: root/alot/commands
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands')
-rw-r--r--alot/commands/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 55920090..ad7110ed 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -965,8 +965,8 @@ class OpenAttachmentCommand(Command):
handler_cmdlist = split_commandstring(handler_cmd)
# 'needsterminal' makes handler overtake the terminal
- nt = entry.get('needsterminal', None)
- overtakes = (nt is None)
+ # XXX: could this be repalced with "'needsterminal' not in entry"?
+ overtakes = entry.get('needsterminal') is None
ui.apply_command(ExternalCommand(handler_cmdlist,
stdin=handler_stdin,