mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix
This commit is contained in:
parent
079afc7bb1
commit
e4209c79ed
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ def main():
|
|||
query = module.params["query"]
|
||||
|
||||
if not isinstance(query, str) and not isinstance(query, list):
|
||||
module.fail_json("the query option value must be a string or list, passed %s" % type(query))
|
||||
module.fail_json(msg="the query option value must be a string or list, passed %s" % type(query))
|
||||
|
||||
if module.params["single_transaction"]:
|
||||
autocommit = False
|
||||
|
|
Loading…
Add table
Reference in a new issue