1
0
Fork 0

Check also webp

This commit is contained in:
Luca Beltrame 2024-02-27 19:20:47 +01:00
parent 3569effefe
commit c77cc776be
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -2,7 +2,7 @@
import argparse
from datetime import date, timedelta, datetime
from pathlib import Path
from wcmatch.pathlib import Path
def get_week_start_end(year, week):
@ -31,7 +31,7 @@ def main():
options = parser.parse_args()
data_path = Path(options.path)
images = data_path.glob("*.png")
images = data_path.glob(['*.png', '*.webp'])
base_dir = Path(options.base_dir)