mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-21 23:01:52 +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:
|
||||
cids = fo.readlines()
|
||||
for cid in cids:
|
||||
pcaveid = cid.strip().rstrip("\n")
|
||||
if pcaveid !="":
|
||||
pending.add(pcaveid)
|
||||
pcaveid = cid.split(";", 1)[0] # split on ";" and take the first bit
|
||||
pcaveid = pcaveid.strip().rstrip("\n")
|
||||
if pcaveid =="":
|
||||
continue
|
||||
pending.add(pcaveid)
|
||||
|
||||
with transaction.atomic():
|
||||
print(" - Deleting Caves and Entrances")
|
||||
|
Loading…
Reference in New Issue
Block a user