Skip to content
Snippets Groups Projects
Commit 9635a06a authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

FIX(sample_export): Replace faulty elif by if

parent f5661be8
No related branches found
No related tags found
No related merge requests found
......@@ -613,7 +613,7 @@ def main():
logger.info("Removing empty columns from export")
no_empty_columns = True
elif "query_string" in form_data and form_data["query_string"]:
if "query_string" in form_data and form_data["query_string"]:
query_string = form_data["query_string"]
if not query_string.lower().startswith("find ") and not query_string.lower().startswith("select "):
logger.error(
......
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