summaryrefslogtreecommitdiff
path: root/test/runner/lib/ansible_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/runner/lib/ansible_util.py')
-rw-r--r--test/runner/lib/ansible_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runner/lib/ansible_util.py b/test/runner/lib/ansible_util.py
index a9f6a06f99..545d067158 100644
--- a/test/runner/lib/ansible_util.py
+++ b/test/runner/lib/ansible_util.py
@@ -25,8 +25,8 @@ def ansible_environment(args, color=True):
ansible_path = os.path.join(os.getcwd(), 'bin')
- if not path.startswith(ansible_path + os.pathsep):
- path = ansible_path + os.pathsep + path
+ if not path.startswith(ansible_path + os.path.pathsep):
+ path = ansible_path + os.path.pathsep + path
if isinstance(args, IntegrationConfig):
ansible_config = 'test/integration/%s.cfg' % args.command