Commit ff03fabc authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bad operator usage in riskgroup filter

parent 31277a80
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ class SatisfyRiskGroups(Filter):
                hv = set('id=%s' % vm['p'] for vm in vms)

                # Generate the TQL matching this list of hv:
                hv_tql = '&'.join(hv)
                hv_tql = '|'.join(hv)

                # Generate the list of tags to show on this list of hv:
                hv_tql_show = ''