This commit is contained in:
Geoffrey Frogeye 2019-05-11 14:16:15 +02:00
parent 53aab39385
commit 00ff76ad0d
2 changed files with 6 additions and 2 deletions

1
config/nvim/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.netrwhist

View File

@ -179,7 +179,10 @@ if __name__ == "__main__":
infos = videosInfos[onlineFilename]
# Really download
ydl.process_ie_result(infos, True, {})
try:
ydl.process_ie_result(infos, True, {})
markTracked(onlineFilename)
markTracked(onlineFilename)
except:
continue