diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-08-30 17:30:46 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-08-30 17:30:46 +0300 |
commit | 6daa96b69e40ef6d4709d6550428048ce5de4ac2 (patch) | |
tree | 2eb300a307a6236578583d9e228afa59ad311998 /parsers | |
parent | 9aaadafc13d1749a826f1ae421bf07038e005d4b (diff) | |
download | troggle-6daa96b69e40ef6d4709d6550428048ce5de4ac2.tar.gz troggle-6daa96b69e40ef6d4709d6550428048ce5de4ac2.tar.bz2 troggle-6daa96b69e40ef6d4709d6550428048ce5de4ac2.zip |
correcting output comment
Diffstat (limited to 'parsers')
-rw-r--r-- | parsers/caves.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/parsers/caves.py b/parsers/caves.py index 50882a3..5b363b6 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -454,15 +454,14 @@ def readcaves(): DataIssue.objects.filter(parser='caves ok').delete() DataIssue.objects.filter(parser='entrances').delete() - print(" - Creating Areas 1623 and 1626") + print(" - Creating Areas 1623, 1624 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") area_1623.save() area_1624= Area.objects.create(short_name = "1624", super=None) print(" - Saving Area 1624") - area_1624.save() - + area_1624.save() area_1626= Area.objects.create(short_name = "1626", super=None) print(" - Saving Area 1626") area_1626.save() |