2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-04-03 09:21:48 +01:00

update pendingcaves only on local dev machine

This commit is contained in:
Philip Sargent 2023-08-03 12:06:35 +03:00
parent 0efdfe66d5
commit 0dfe9d94b2

View File

@ -726,9 +726,11 @@ def read_cave(filename, cave=None):
def add_cave_to_pending_list(id): def add_cave_to_pending_list(id):
fpending = Path(CAVEDESCRIPTIONS, "pendingcaves.txt") fpending = Path(CAVEDESCRIPTIONS, "pendingcaves.txt")
if fpending.is_file(): if settings.DBSWITCH == "sqlite": # dev machine only
with open(fpending, "a") as pend: if fpending.is_file():
pend.write(f"{id}\n") with open(fpending, "a") as pend:
pend.write(f"{id}\n")
# now need to do the git commit thing if running on server.
def readcaves(): def readcaves():
"""Called from databaseReset mass importer. """Called from databaseReset mass importer.