diff --git a/dlibrary/dlibrary.py b/dlibrary/dlibrary.py index cb48a20..3675ae0 100755 --- a/dlibrary/dlibrary.py +++ b/dlibrary/dlibrary.py @@ -48,6 +48,8 @@ def extract(args): work_extract_path = args.destdir / 'extract' / work_id work_extract_path.mkdir(parents=True) + print(f'Extracting {zip_path} to {work_extract_path}') + with open_zipfile_with_encoding(zip_path) as z: z.extractall(path=work_extract_path)