Browse Source

Fix fix event type filter in postgre

release-2.9
Jean-Romain Garnier 6 years ago
committed by Gabriel Detraz
parent
commit
7ad4d08dd2
  1. 2
      logs/models.py

2
logs/models.py

@ -87,7 +87,7 @@ class ActionsSearch:
if c is None: if c is None:
return None return None
classes += c.lower() classes += list(map(str.lower, c))
return classes return classes

Loading…
Cancel
Save