From 3ac61450a1d2c01146f3f95297ff7ed854fccb69 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 17 Jul 2017 13:50:55 -0400 Subject: [PATCH] Refs #3646 -- invoke twine correctly --- release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.py b/release.py index 0894d23fda2b..f10eed418939 100644 --- a/release.py +++ b/release.py @@ -133,7 +133,7 @@ def release(version): response.raise_for_status() wait_for_build_completed(session) paths = download_artifacts(session) - run("twine", "upload", " ".join(paths)) + run("twine", "upload", *paths) if __name__ == "__main__":