From 53af57b08bdd901cfa4911c1ac1bdaf83d38468d Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 29 Jul 2019 18:35:24 -0700 Subject: [PATCH] Fix type discrepancy in ansible-test. --- test/runner/lib/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/lib/executor.py b/test/runner/lib/executor.py index 58de39316e2..87884b8ce20 100644 --- a/test/runner/lib/executor.py +++ b/test/runner/lib/executor.py @@ -1332,7 +1332,7 @@ def command_units(args): version_commands = [] - available_versions = get_available_python_versions(SUPPORTED_PYTHON_VERSIONS) + available_versions = get_available_python_versions(list(SUPPORTED_PYTHON_VERSIONS)) for version in SUPPORTED_PYTHON_VERSIONS: # run all versions unless version given, in which case run only that version