diff --git a/build/replace_versions.py b/build/replace_versions.py index 8493a6aa..13a201ab 100644 --- a/build/replace_versions.py +++ b/build/replace_versions.py @@ -22,7 +22,9 @@ def get_head_rev(): def get_version_load(branch): - target = urlparse("http://buildserver.urbackup.org/urbackup_build_version_"+branch+".json") + build_info_url = "http://buildserver.urbackup.org/urbackup_build_version_"+branch+".json" + print("Build info url: "+build_info_url) + target = urlparse(build_info_url) method = 'GET' body = ''