Fix USAGE line not filtered

This commit is contained in:
Laurent Indermuehle 2023-09-14 14:51:34 +02:00
parent 3288c22e64
commit 1e24343375
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -535,7 +535,7 @@ class MySQL_Info(object):
priv_string = list()
for db_table, priv in user_priv.items():
if db_table == '*.*' and priv == 'USAGE':
if db_table == '*.*' and priv == ['USAGE']:
continue
# privileges_get returns "'''@''': 'PROXY,GRANT'". The % is missing