diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-02-11 01:32:18 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-02-11 01:32:18 +0000 |
commit | c099bf807138d55548a01579a910559b884968cd (patch) | |
tree | 27ad7ec535eb915d6b4c8aa7c6f7c7b0bbc54d1d | |
parent | 89afdded38329f75822c129d7d9d6e78a758e441 (diff) | |
download | troggle-c099bf807138d55548a01579a910559b884968cd.tar.gz troggle-c099bf807138d55548a01579a910559b884968cd.tar.bz2 troggle-c099bf807138d55548a01579a910559b884968cd.zip |
typo for python 3.12
-rw-r--r-- | core/views/editor_helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/editor_helpers.py b/core/views/editor_helpers.py index f00ef83..2be9800 100644 --- a/core/views/editor_helpers.py +++ b/core/views/editor_helpers.py @@ -148,7 +148,7 @@ def new_image_form(request, path): descrip = form.cleaned_data["description"] if not descrip: # date and time from exif data - descrip = f"{exif_dict["Exif"][36867].decode()} {exif_dict["Exif"][36880].decode()}" + descrip = f"{exif_dict['Exif'][36867].decode()} {exif_dict['Exif'][36880].decode()}" else: exif = None |