mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-25 08:41:51 +00:00
bug in pending caves parsing
This commit is contained in:
parent
d88ae2f78c
commit
6b94829315
@ -847,9 +847,11 @@ def readcaves():
|
|||||||
with open(fpending, "r") as fo:
|
with open(fpending, "r") as fo:
|
||||||
cids = fo.readlines()
|
cids = fo.readlines()
|
||||||
for cid in cids:
|
for cid in cids:
|
||||||
pcaveid = cid.strip().rstrip("\n")
|
pcaveid = cid.split(";", 1)[0] # split on ";" and take the first bit
|
||||||
if pcaveid !="":
|
pcaveid = pcaveid.strip().rstrip("\n")
|
||||||
pending.add(pcaveid)
|
if pcaveid =="":
|
||||||
|
continue
|
||||||
|
pending.add(pcaveid)
|
||||||
|
|
||||||
with transaction.atomic():
|
with transaction.atomic():
|
||||||
print(" - Deleting Caves and Entrances")
|
print(" - Deleting Caves and Entrances")
|
||||||
|
Loading…
Reference in New Issue
Block a user