Skip to content

Commit 8c4da3a

Browse files
djugeitbabej
authored andcommitted
fixed another is not
1 parent 4620771 commit 8c4da3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

taskwiki/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def tw_args_to_kwargs(args):
8383
# Ignore anything which is not one-word string of alpha chars
8484
# This will skip over constructs with attribute modifiers
8585
if key.isalpha():
86-
output[key] = value if value is not "" else None
86+
output[key] = value if value != "" else None
8787
# Tag addition
8888
elif arg.startswith('+'):
8989
value = arg[1:]

0 commit comments

Comments
 (0)