fix case when fetch return a tuple instead of a dict

This commit is contained in:
Laurent Indermuehle 2023-09-15 17:19:15 +02:00
parent 319b7e86f3
commit 77c7beb514
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -487,7 +487,8 @@ def privileges_get(module, cursor, user, host, maria_role=False):
return x
for grant in grants:
grant = list(grant.values())
if isinstance(grant, dict):
grant = list(grant.values())
if not maria_role:
res = re.match("""GRANT (.+) ON (.+) TO (['`"]).*\\3@(['`"]).*\\4( IDENTIFIED BY PASSWORD (['`"]).+\\6)? ?(.*)""", grant[0])