From 96bb428a8be0424adf780c3b7d5545b474fc3e50 Mon Sep 17 00:00:00 2001 From: 5hagge <5hagge@informatik.uni-hamburg.de> Date: Fri, 25 May 2018 16:15:38 +0200 Subject: [PATCH] removed http:// from base url --- imagetagger/imagetagger/images/templates/images/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagetagger/imagetagger/images/templates/images/download.py b/imagetagger/imagetagger/images/templates/images/download.py index cf5826c0..f08ff19f 100755 --- a/imagetagger/imagetagger/images/templates/images/download.py +++ b/imagetagger/imagetagger/images/templates/images/download.py @@ -10,7 +10,7 @@ print("Python3 requests is not installed. Please use e.g. pip3 install requests") sys.exit() -BaseUrl = "http://" + "{{ base_url }}" + "/" +BaseUrl = "{{ base_url }}" + "/" if len(sys.argv) < 2: imageset = input("Imagesets you want to download, separated by a ',' or ' ':") else: