summaryrefslogtreecommitdiffstats
path: root/core/views/logbooks.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2024-07-23 15:52:04 +0200
committerPhilip Sargent <philip.sargent@gmail.com>2024-07-23 15:52:04 +0200
commitca103fde229f31a95ebbdd5b65283f1878cc4417 (patch)
treeea676266b4ed871c6c77260dde88fdad89dac0e7 /core/views/logbooks.py
parenta2f4591f725026c224e11ae7f5265546bcf5bba9 (diff)
downloadtroggle-ca103fde229f31a95ebbdd5b65283f1878cc4417.tar.gz
troggle-ca103fde229f31a95ebbdd5b65283f1878cc4417.tar.bz2
troggle-ca103fde229f31a95ebbdd5b65283f1878cc4417.zip
more debug for logbook edits
Diffstat (limited to 'core/views/logbooks.py')
-rw-r--r--core/views/logbooks.py2
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()