summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-x.ci/scripts/auditwheel_wrapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/auditwheel_wrapper.py b/.ci/scripts/auditwheel_wrapper.py
index c744644c25..a33b39314f 100755
--- a/.ci/scripts/auditwheel_wrapper.py
+++ b/.ci/scripts/auditwheel_wrapper.py
@@ -94,7 +94,7 @@ def main(wheel_file: str, dest_dir: str, archs: Optional[str]) -> None:
         # `delocate-listdeps`.
         subprocess.run(["delocate-listdeps", wheel_file], check=True)
         subprocess.run(
-            ["delocate-wheel" "--require-archs", archs, "-w", dest_dir, wheel_file],
+            ["delocate-wheel", "--require-archs", archs, "-w", dest_dir, wheel_file],
             check=True,
         )
     else: