Skip to content
Snippets Groups Projects
Commit 0ec580d0 authored by David Hendriks's avatar David Hendriks
Browse files

fixed error again

parent 08afd2e7
No related branches found
No related tags found
No related merge requests found
......@@ -383,7 +383,7 @@ def create_arg_string(arg_dict, sort=False, filter_values=False):
# Filter out NULLS (not compiled anyway)
if filter_values:
if not arg_dict[key] in ["NULL", "Function"]:
if not value == "":
if not arg_dict[key] == "":
arg_string += "{key} {value} ".format(key=key, value=arg_dict[key])
else:
arg_string += "{key} {value} ".format(key=key, value=arg_dict[key])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment