From: Eric Leblond Date: Thu, 31 Jul 2014 09:48:41 +0000 (+0200) Subject: prscript: update URL X-Git-Tag: suricata-2.1beta1~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b9eecc7f6a5703ad933aed4082e4dc316ab555f;p=thirdparty%2Fsuricata.git prscript: update URL Buildbot server has been moved to another box. --- diff --git a/qa/prscript.py b/qa/prscript.py index 2a28a65ffa..7910ef7b5e 100755 --- a/qa/prscript.py +++ b/qa/prscript.py @@ -23,7 +23,7 @@ import sys # - github user # - buildbot user and password -BASE_URI="https://buildbot.suricata-ids.org/" +BASE_URI="https://buildbot.openinfosecfoundation.org/" BUILDERS_URI=BASE_URI+"builders/" JSON_BUILDERS_URI=BASE_URI+"json/builders/" @@ -64,7 +64,7 @@ def OpenBuildbotSession(): params = urllib.urlencode(auth_params) opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookie)) urllib2.install_opener(opener) - request = urllib2.Request(BASE_URI + '/login', params) + request = urllib2.Request(BASE_URI + 'login', params) page = urllib2.urlopen(request) return cookie