From 6c77b34268954cf114fbe18df8e927b5f7146b85 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 20 Feb 2014 09:32:55 -0800 Subject: python 2.6 --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 1021360a..8c7dc40a 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__), -- cgit v1.2.3