issue #291: 2.6 compat fix.

This commit is contained in:
David Wilson 2018-07-25 13:25:17 -07:00
parent b44b823c4a
commit 71b4294888
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ def parse_python_path(s):
if not s: if not s:
return None return None
return shlex.split(s) return ansible.utils.shlex.shlex_split(s)
def config_from_play_context(transport, inventory_name, connection): def config_from_play_context(transport, inventory_name, connection):