diff --git a/config/nvim/.gitignore b/config/nvim/.gitignore new file mode 100644 index 0000000..a0e76af --- /dev/null +++ b/config/nvim/.gitignore @@ -0,0 +1 @@ +.netrwhist diff --git a/config/scripts/rssVideos b/config/scripts/rssVideos index 5384c33..500f811 100755 --- a/config/scripts/rssVideos +++ b/config/scripts/rssVideos @@ -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