From e4986acdc13e05a8cb2fdbd1da048af27893001a Mon Sep 17 00:00:00 2001 From: Matt Kubilus Date: Sun, 2 Jul 2023 17:43:33 -0400 Subject: [PATCH] Fix for sha files --- autoortho/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoortho/downloader.py b/autoortho/downloader.py index 95b3fb62..70c42c2c 100644 --- a/autoortho/downloader.py +++ b/autoortho/downloader.py @@ -273,7 +273,7 @@ def extract(self): # Assemble split zips split_zips = {} for o in overlay_paths + ortho_paths: - m = re.match('(.*[.]zip)[.][0-9]*', o) + m = re.match('(.*[.]zip)[.][0-9]+', o) if m: log.info(f"Split zip detected for {m.groups()}") zipname = m.groups()[0]