mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-12-08 20:39:08 +00:00
Fail the current song only if ConnectionError
This commit is contained in:
@@ -402,7 +402,7 @@ def grabList(file):
|
|||||||
print('')
|
print('')
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
graceQuit()
|
graceQuit()
|
||||||
except BaseException:
|
except ConnectionError:
|
||||||
lines.append(raw_song)
|
lines.append(raw_song)
|
||||||
trimSong(file)
|
trimSong(file)
|
||||||
with open(file, 'a') as myfile:
|
with open(file, 'a') as myfile:
|
||||||
|
|||||||
Reference in New Issue
Block a user