Skip to content
Snippets Groups Projects
Commit 933fcc1d authored by Piotr Gawron's avatar Piotr Gawron
Browse files

issue with loggin unknown filter params removed

parent 9cc6f9ee
No related branches found
No related tags found
1 merge request!34Performance of subject list
Pipeline #
...@@ -115,8 +115,11 @@ def get_subjects_filtered(subjects, filters): ...@@ -115,8 +115,11 @@ def get_subjects_filtered(subjects, filters):
result = result.filter(postponed=(value == "true")) result = result.filter(postponed=(value == "true"))
elif column == "default_location": elif column == "default_location":
result = result.filter(default_location=value) result = result.filter(default_location=value)
elif column == "":
pass
else: else:
print "UNKNOWN filter: " + row print "UNKNOWN filter: "
print row
return result return result
......
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