aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-07-17 14:59:17 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-07-17 20:59:17 +0200
commit4973350a666d235228f1112c4d28a3b4d215fa05 (patch)
tree681b9a13d215ce780bfab89ecbcf0371b41fc98f /release.py
parent9c521ee290243eeeb1735ee98de6104bdc22456a (diff)
downloadcryptography-4973350a666d235228f1112c4d28a3b4d215fa05.tar.gz
cryptography-4973350a666d235228f1112c4d28a3b4d215fa05.tar.bz2
cryptography-4973350a666d235228f1112c4d28a3b4d215fa05.zip
Refs #3646 -- invoke twine correctly (#3789)
Diffstat (limited to 'release.py')
-rw-r--r--release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.py b/release.py
index 0894d23f..f10eed41 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__":