diff options
Diffstat (limited to 'tasks.py')
-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: ") |