Skip to content

Commit

Permalink
Add missing request argument to view
Browse files Browse the repository at this point in the history
  • Loading branch information
ffont committed Dec 10, 2024
1 parent 3a2287e commit beed6d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bookmarks/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def download_bookmark_category(request, category_id):
return download_sounds(licenses_file_url=licenses_url, licenses_file_content=licenses_content, sounds_list=sounds_list)


def bookmark_category_licenses(category_id):
def bookmark_category_licenses(request, category_id):
category = get_object_or_404(BookmarkCategory, id=category_id)
attribution = category.get_attribution()
return HttpResponse(attribution, content_type="text/plain")
Expand Down

0 comments on commit beed6d0

Please sign in to comment.