1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Cleaning up whitspace issues in the mysql_user module

This commit is contained in:
James Cammarata 2013-09-06 09:28:30 -05:00
parent 892c594319
commit 441062f061

View file

@ -242,7 +242,6 @@ def privileges_unpack(priv):
for item in priv.split('/'):
pieces = item.split(':')
if pieces[0].find('.') != -1:
pieces[0] = pieces[0].split('.')
for idx, piece in enumerate(pieces):
if pieces[0][idx] != "*":
@ -251,7 +250,6 @@ def privileges_unpack(priv):
output[pieces[0]] = pieces[1].upper().split(',')
if '*.*' not in output:
output['*.*'] = ['USAGE']