fix build extras URLs

This commit is contained in:
Timothee Besset 2018-02-03 18:00:51 -06:00
parent 6f5e9a39b4
commit 79605bbc69
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ class Config:
]: ]:
if ( not os.path.exists( lib_archive ) ): if ( not os.path.exists( lib_archive ) ):
print( 'downloading %s' % 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' ) archive_File = open( lib_archive, 'wb' )
while True: while True:
data = archive_web_request.read( 1048576 ) # read 1mb at a time data = archive_web_request.read( 1048576 ) # read 1mb at a time