File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ def downloadFile(link, destination):
43
43
downloadLocation = destination + fileName
44
44
open (downloadLocation , 'wb' ).write (r .content )
45
45
return downloadLocation
46
- except ConnectionError :
46
+ except ConnectionError as e :
47
+ print (e )
47
48
print ("File not available, skipping..." )
48
49
return None
49
50
@@ -243,14 +244,13 @@ def start():
243
244
244
245
if unlaunchNeeded == 1 :
245
246
#Download Unlaunch
246
- url = "https://problemkaputt.de/unlaunch.zip"
247
+ url = "https://web.archive.org/web/20210207235625if_/https:// problemkaputt.de/unlaunch.zip"
247
248
outputbox ("Downloading Unlaunch\n " )
248
249
unlaunchLocation = downloadFile (url , cwdtemp )
249
250
if unlaunchLocation != None :
250
251
print ("Unlaunch Downloaded" )
251
252
outputbox ("Unlaunch Downloaded\n " )
252
253
lineCounter = lineCounter + 1
253
-
254
254
#Extract Unlaunch
255
255
unzipper (unlaunchLocation ,directory )
256
256
You can’t perform that action at this time.
0 commit comments