aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tasks.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 5733cc4e..50eb90ae 100644
--- a/tasks.py
+++ b/tasks.py
@@ -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: ")