summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--parsers/caves.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/parsers/caves.py b/parsers/caves.py
index 05bc159..241e30a 100644
--- a/parsers/caves.py
+++ b/parsers/caves.py
@@ -754,7 +754,8 @@ def read_cave(filename, mvf=None, cave=None):
if filename != f"{correctslug}.html" :
message = f" ! Filename is not the same as the cave slug '{slug}' != '{areacode}-{unofficial_number}' {url=} in file {filename} IGNORING caveslug field in the .html file."
DataIssue.objects.create(parser="caves", message=message, url=msgurl) # url here is for where the file actually is, for editing
- mvf.write(mvtext + "\n")
+ if mvf: # this can be called online, not just when a databaseReset is done, so mvf may be None
+ mvf.write(mvtext + "\n")
print(message)
return correctslug