Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
=============

Version 0.17.12
---------------

- Remove Pathways (Coming Soon) (#1482)
- add to list dialog updates (#1463)
- Fix syntax that a pre-commit check was failing (#1480)

Version 0.17.11 (Released August 29, 2024)
---------------

Expand Down
2 changes: 1 addition & 1 deletion data_fixtures/migrations/0001_add_testimonial_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def load_fixtures(apps, schema_editor):
Save the image from fixture so alternate sizes are generated
"""
with Path.open(
f"{settings.BASE_DIR}/testimonials/fixtures/avatars/{fixture["attestant_name"]}.png",
f"{settings.BASE_DIR}/testimonials/fixtures/avatars/{fixture['attestant_name']}.png",
"rb",
) as imagefile:
testimonial.avatar.save("avatar.png", File(imagefile), save=True)
Expand Down
Loading