raise ValueError when not matching media files

This commit is contained in:
simon 2022-08-11 11:10:58 +07:00
parent 31061c0eb0
commit c26ef012c1
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 4 additions and 0 deletions

View File

@ -250,6 +250,10 @@ class ImportFolderScanner:
def process_videos(self):
"""loop through all videos"""
for current_video in self.to_import:
if not current_video["media"]:
print(f"{current_video}: no matching media file found.")
raise ValueError
self._detect_youtube_id(current_video)
self._dump_thumb(current_video)
self._convert_thumb(current_video)