Skip to content

Commit

Permalink
Merge pull request #1401 from devinit/fix/responsiveImageNode
Browse files Browse the repository at this point in the history
Fix responsive image node
  • Loading branch information
akmiller01 authored Jul 22, 2024
2 parents 848e15e + 56543cb commit d7bcc6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion di_website/common/templatetags/responsive.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def render(self, context):
return ''

try:
rendition = image.get_rendition(self.filter)
rendition = image.get_rendition(self.filter_specs)
except SourceImageIOError:
# It's fairly routine for people to pull down remote databases to their
# local dev versions without retrieving the corresponding image files.
Expand Down

0 comments on commit d7bcc6b

Please sign in to comment.