Skip to content

Commit

Permalink
Merge pull request DjangoGirls#911 from marksweb/fix/typo
Browse files Browse the repository at this point in the history
Fix typo raised by translator
  • Loading branch information
amakarudze authored Oct 2, 2023
2 parents 6090c9f + 5951c5a commit bab263c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def decorator(request, *args, **kwargs):
page_url = kwargs.get("page_url")

if not page_url:
raise ValueError(_('"page_url" slug must be present to user this decorator.'))
raise ValueError(_('"page_url" slug must be present to use this decorator.'))

if not request.user.is_authenticated:
return redirect("core:event", page_url)
Expand Down

0 comments on commit bab263c

Please sign in to comment.