diff --git a/setup.py b/setup.py index 28e7a003a9..c59931c775 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def _build_std_names(self, directory): script_path = os.path.join("tools", "generate_std_names.py") xml_path = os.path.join("etc", "cf-standard-name-table.xml") module_path = os.path.join(directory, "iris", "std_names.py") - args = (sys.executable, script_path, xml_path, module_path) + args = [sys.executable, script_path, xml_path, module_path] self.spawn(args) def finalize_options(self):