Fixed
Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
parent
615d19feb2
commit
b34ecda5dd
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ try:
|
|||
tiles = []
|
||||
with open(lfile) as f:
|
||||
for line in f:
|
||||
match = re.match(r"[ew]\d{3}[ns]\d{2}/[ew]\d{3}[ns]\d{2}*.\.stg'", line)
|
||||
match = re.match(r".*[ew]\d{3}[ns]\d{2}/([ew]\d{3}[ns]\d{2}).*\.stg", line)
|
||||
if match != None:
|
||||
tiles.append(match.group(1))
|
||||
except IOError:
|
||||
|
|
Loading…
Reference in a new issue