Skip to content

Commit

Permalink
fix build extras URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
TTimo committed Feb 4, 2018
1 parent 6f5e9a3 commit 79605bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Expand Up @@ -313,7 +313,7 @@ def Setup( self ):
]:
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
Expand Down

0 comments on commit 79605bb

Please sign in to comment.