mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-26 13:18:58 +07:00
hacking/test-module: Deal with move of parse_kv
This commit is contained in:
@@ -36,6 +36,7 @@ import traceback
|
||||
import optparse
|
||||
import ansible.utils as utils
|
||||
from ansible.parsing.utils.jsonify import jsonify
|
||||
from ansible.parsing.splitter import parse_kv
|
||||
import ansible.module_common as module_common
|
||||
import ansible.constants as C
|
||||
|
||||
@@ -75,7 +76,7 @@ def write_argsfile(argstring, json=False):
|
||||
argspath = os.path.expanduser("~/.ansible_test_module_arguments")
|
||||
argsfile = open(argspath, 'w')
|
||||
if json:
|
||||
args = utils.parse_kv(argstring)
|
||||
args = parse_kv(argstring)
|
||||
argstring = jsonify(args)
|
||||
argsfile.write(argstring)
|
||||
argsfile.close()
|
||||
|
||||
Reference in New Issue
Block a user