diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/views/caves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/caves.py b/core/views/caves.py index ee054d0..4408d76 100644 --- a/core/views/caves.py +++ b/core/views/caves.py @@ -498,7 +498,7 @@ def edit_entrance(request, path="", caveslug=None, entslug=None): ent = read_entrance(filename, ent=entrance) print(f"ENTRANCE from file: entranceletter = '{caveAndEntrance.entranceletter}'") - form = EntranceForm(instance=entrance) + entform = EntranceForm(instance=entrance) if entslug is None: entletterform = EntranceLetterForm() # print(f" Getting entletter from EntranceLetterForm") |