From 83571291e5465b51983518a01e42aa388951a5d8 Mon Sep 17 00:00:00 2001 From: Iury Gregory Melo Ferreira Date: Fri, 6 May 2022 11:54:57 -0300 Subject: [PATCH] Fix typo in build wheel command A missing comma was causing the strings to be concatenated, resulting in a wrong command that caused the validate job to fail. Change-Id: I7c5dab48db725608c7b1cfa4e8e8034d8225b165 --- openstack_releases/pythonutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_releases/pythonutils.py b/openstack_releases/pythonutils.py index 6182c96cb7..cec0a13cb2 100644 --- a/openstack_releases/pythonutils.py +++ b/openstack_releases/pythonutils.py @@ -94,7 +94,7 @@ def build_sdist(workdir, repo): 'SKIP_GENERATE_AUTHORS': '1', 'SKIP_WRITE_GIT_CHANGELOG': '1', } - cmd = [python, '-m', 'build' '--sdist', '--wheel'] + cmd = [python, '-m', 'build', '--sdist', '--wheel'] processutils.check_call( cmd, cwd=dest,