2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00

We don't want troggle trying to write out the files

This commit is contained in:
Sam Wenham 2020-02-20 18:42:31 +00:00
parent a559151c57
commit 52cec290d9

View File

@ -159,12 +159,6 @@ def pageredirects():
f = troggle.flatpages.models.Redirect(originalURL = oldURL, newURL = newURL)
f.save()
def writeCaves():
for cave in Cave.objects.all():
cave.writeDataFile()
for entrance in Entrance.objects.all():
entrance.writeDataFile()
def usage():
print("""Usage is 'python databaseReset.py <command>'
where command is:
@ -182,9 +176,6 @@ def usage():
survexpos
surveys
tunnel - read in the Tunnel files
writeCaves
- read in - always means read from files and put the information into the database
- write out - always means create the auto-generated files from the database
""")
if __name__ == "__main__":