Skip to content

Commit

Permalink
Fix for sha files
Browse files Browse the repository at this point in the history
  • Loading branch information
kubilus1 committed Jul 2, 2023
1 parent 3fd30ab commit e4986ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoortho/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit e4986ac

Please sign in to comment.