mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
Fixing non-null error, even though it should be allowed
This commit is contained in:
parent
779afc2f2a
commit
5d7d2b82b2
@ -149,9 +149,11 @@ def readcaves():
|
||||
|
||||
with transaction.atomic():
|
||||
print(" - Deleting Caves and Entrances")
|
||||
Area.objects.all().delete()
|
||||
Cave.objects.all().delete()
|
||||
Entrance.objects.all().delete()
|
||||
# Clear the cave data issues and the caves as we are reloading
|
||||
DataIssue.objects.filter(parser='areas').delete()
|
||||
DataIssue.objects.filter(parser='caves').delete()
|
||||
DataIssue.objects.filter(parser='caves ok').delete()
|
||||
DataIssue.objects.filter(parser='entrances').delete()
|
||||
|
Loading…
Reference in New Issue
Block a user