From 79605bbc694ab43cc55144537f6808491d4694b8 Mon Sep 17 00:00:00 2001 From: Timothee Besset Date: Sat, 3 Feb 2018 18:00:51 -0600 Subject: [PATCH] fix build extras URLs --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 9fae86b4..1ff26e32 100644 --- a/config.py +++ b/config.py @@ -313,7 +313,7 @@ class Config: ]: if ( not os.path.exists( lib_archive ) ): print( 'downloading %s' % lib_archive ) - archive_web_request = urllib2.urlopen( 'http://gtkradiant.s3-website-us-east-1.amazonaws.com/%s' % lib_archive ) + archive_web_request = urllib2.urlopen( 'http://s3.amazonaws.com/GtkRadiant/%s' % lib_archive ) archive_File = open( lib_archive, 'wb' ) while True: data = archive_web_request.read( 1048576 ) # read 1mb at a time