8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 08:38:09 +00:00

Fix fix event type filter in postgre

This commit is contained in:
Jean-Romain Garnier 2020-04-24 23:36:50 +02:00 committed by Gabriel Detraz
parent 6280e86472
commit 7ad4d08dd2

View file

@ -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