diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-26 23:31:19 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-26 23:31:19 -0400 |
commit | 0f74a2c128447f0546acab23fbfe87be9a3ea9b6 (patch) | |
tree | daab2276078fcf131f72301ab3068113d7e89f79 | |
parent | 9ca7f036907d6b08a4b06c8fb22bbc6989f84416 (diff) | |
download | cryptography-0f74a2c128447f0546acab23fbfe87be9a3ea9b6.tar.gz cryptography-0f74a2c128447f0546acab23fbfe87be9a3ea9b6.tar.bz2 cryptography-0f74a2c128447f0546acab23fbfe87be9a3ea9b6.zip |
line length
-rw-r--r-- | tasks.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -94,7 +94,9 @@ def release(version): session = requests.Session() - response = session.request("PURGE", "https://pypi.python.org/simple/cryptography/") + response = session.request( + "PURGE", "https://pypi.python.org/simple/cryptography/" + ) response.raise_for_status() username = getpass.getpass("Input the GitHub/Jenkins username: ") |