Remove log from whitelist

This commit is contained in:
George Lacey 2024-05-10 16:17:11 +01:00
parent 9a11244115
commit 4633505b98

View File

@ -43,7 +43,7 @@ def transcode(transcode_list: list, encoder: Path):
def main(input_dir: Path, output_dir: Path, encoder: Path):
transcode_list = []
file_whitelist = ['.jpg', '.jpeg', '.png', '.log']
file_whitelist = ['.jpg', '.jpeg', '.png']
for artist in input_dir.iterdir():
if artist.is_dir():
artist_out = Path(output_dir) / artist.name