diff options
Diffstat (limited to 'parsers')
-rw-r--r-- | parsers/caves.py | 2 | ||||
-rw-r--r-- | parsers/locations.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/parsers/caves.py b/parsers/caves.py index 22624b2..4580e82 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -671,7 +671,7 @@ def read_cave(filename, cave=None): #raise # This fails to do an update! It just crashes.. to be fixed message = f" ! CaveSlug update/create failure : {slug}, skipping file cave_data/{context} with exception\nException: {ex.__class__}" - DataIssue.objects.create(parser="caves", message=message, url=f"{cave.url()}_edit/") + DataIssue.objects.create(parser="caves", message=message, url=f"{cave.url}_edit/") print(message) primary = False diff --git a/parsers/locations.py b/parsers/locations.py index bdb2fff..6c079cd 100644 --- a/parsers/locations.py +++ b/parsers/locations.py @@ -24,7 +24,7 @@ entrances """ todo = """ -- Pending a complete revision of how we handle GPS coordinates of entrances. +- """ class MapLocations(object): |