Commit 192c0c64 by Rafal Lewczuk Committed by Michael DeHaan

Trivial fix: make PyDev happy (imports).

parent 12873b9b
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
import sys import sys
import getpass import getpass
import ansible.runner from ansible.runner import Runner
import ansible.constants as C import ansible.constants as C
from ansible import utils from ansible import utils
from ansible import errors from ansible import errors
...@@ -84,7 +84,7 @@ class Cli(object): ...@@ -84,7 +84,7 @@ class Cli(object):
if options.tree: if options.tree:
utils.prepare_writeable_dir(options.tree) utils.prepare_writeable_dir(options.tree)
runner = ansible.runner.Runner( runner = Runner(
module_name=options.module_name, module_path=options.module_path, module_name=options.module_name, module_path=options.module_path,
module_args=options.module_args, module_args=options.module_args,
remote_user=options.remote_user, remote_pass=sshpass, remote_user=options.remote_user, remote_pass=sshpass,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment