Fix closing bracket

This commit is contained in:
Jorge-Rodriguez 2020-07-26 11:07:21 +03:00
parent 91fe5b4cb4
commit b6e42168d5
No known key found for this signature in database
GPG key ID: 43153D1EFD8F7D90

View file

@ -1088,8 +1088,7 @@ def main():
if not cursor: if not cursor:
cursor, db_conn = mysql_connect(module, login_user, login_password, config_file, ssl_cert, ssl_key, ssl_ca, db, cursor, db_conn = mysql_connect(module, login_user, login_password, config_file, ssl_cert, ssl_key, ssl_ca, db,
connect_timeout=connect_timeout, connect_timeout=connect_timeout)
)
except Exception as e: except Exception as e:
module.fail_json(msg="unable to connect to database, check login_user and login_password are correct or %s has the credentials. " module.fail_json(msg="unable to connect to database, check login_user and login_password are correct or %s has the credentials. "
"Exception message: %s" % (config_file, to_native(e))) "Exception message: %s" % (config_file, to_native(e)))