From d3aa06f81ffbfb24de122b849263dc7655332371 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 13 Dec 2016 12:15:48 -0800 Subject: Don't pass None as second argument of dict.get() This is the default value. --- alot/commands/thread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'alot/commands') 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, -- cgit v1.2.3