summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-20 09:32:55 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-20 09:32:55 -0800
commit6c77b34268954cf114fbe18df8e927b5f7146b85 (patch)
treee5c73502a9665312984099b7e693a926edac34fe
parent6ab3f46b6f615dda1cef5cf7d0531a1cc9ba2903 (diff)
downloadcryptography-6c77b34268954cf114fbe18df8e927b5f7146b85.tar.gz
python 2.6
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 1021360af..8c7dc40a5 100644
--- a/tasks.py
+++ b/tasks.py
@@ -62,7 +62,7 @@ def download_artifacts():
response.raise_for_status()
for artifact in response.json()["artifacts"]:
response = requests.get(
- "{}artifacts/{}".format(run["url"], artifact["relativePath"])
+ "{0}artifacts/{1}".format(run["url"], artifact["relativePath"])
)
out_path = os.path.join(
os.path.dirname(__file__),