mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
fix build extras URLs
This commit is contained in:
parent
6f5e9a39b4
commit
79605bbc69
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue