Skip to content

Commit

Permalink
fix filters combination expression (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhati-pradeep authored Jun 13, 2023
1 parent cb111cb commit 7ad83e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def unify_spec(self, spec1, spec2):

@staticmethod
def _parse_filters(filters):
return ",".join(map(lambda i: "{0}=={1}".format(i[0], i[1]), filters.items()))
return ";".join(map(lambda i: "{0}=={1}".format(i[0], i[1]), filters.items()))

@staticmethod
def _filter_entities(entities, custom_filters):
Expand Down

0 comments on commit 7ad83e8

Please sign in to comment.