Skip to content

Commit

Permalink
change deprecated parameter pw to password
Browse files Browse the repository at this point in the history
  • Loading branch information
ziegenberg committed Mar 12, 2021
1 parent baea97d commit 30247e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
if login_user is not None:
config['user'] = login_user
if login_password is not None:
config['passwd'] = login_password
config['password'] = login_password
if ssl_cert is not None:
config['ssl']['cert'] = ssl_cert
if ssl_key is not None:
Expand Down

0 comments on commit 30247e7

Please sign in to comment.