mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-03 12:44:25 -07:00
Fix: sanity pylint
This commit is contained in:
parent
b195e71e7c
commit
7d5a064503
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
|
||||
# after privilege manipulation, compare privileges from before and now
|
||||
after_priv = privileges_get(cursor, user, host, maria_role)
|
||||
changed = changed or not (curr_priv == after_priv)
|
||||
changed = changed or (curr_priv != after_priv)
|
||||
|
||||
if role:
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue