mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-14 22:57:11 +00:00
Parse all files, not just those in the *include tree
This commit is contained in:
@@ -457,7 +457,7 @@ def readcaves():
|
||||
DataIssue.objects.filter(parser='caves ok').delete()
|
||||
DataIssue.objects.filter(parser='entrances').delete()
|
||||
|
||||
print(" - Creating Areas 1623, 1624 and 1626")
|
||||
print(" - Creating Areas 1623, 1624, 1627 and 1626")
|
||||
# This crashes on the server with MariaDB even though a null parent is explicitly allowed.
|
||||
area_1623= Area.objects.create(short_name = "1623", super=None)
|
||||
print(" - Saving Area 1623")
|
||||
@@ -468,6 +468,9 @@ def readcaves():
|
||||
area_1626= Area.objects.create(short_name = "1626", super=None)
|
||||
print(" - Saving Area 1626")
|
||||
area_1626.save()
|
||||
area_1627= Area.objects.create(short_name = "1627", super=None)
|
||||
print(" - Saving Area 1627")
|
||||
area_1627.save()
|
||||
|
||||
|
||||
with transaction.atomic():
|
||||
|
||||
Reference in New Issue
Block a user