diff options
Diffstat (limited to 'core/views/logbooks.py')
-rw-r--r-- | core/views/logbooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/logbooks.py b/core/views/logbooks.py index 5d9dca2..5f560e8 100644 --- a/core/views/logbooks.py +++ b/core/views/logbooks.py @@ -230,7 +230,7 @@ def logentrydelete(request, year): print(f" - '{i}' {request.POST[i]}") eslug = request.POST["entry_slug"] entry = LogbookEntry.objects.get(slug=eslug) - # OK we delete it formt he db and then re-save logbook.html file + # OK we delete it from the db and then re-save logbook.html file # to ensure that the permanent record also has the entry deleted. entry.delete() |