Commit 1dd74928 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Fixed #19632 -- Bug in code sample.

Thanks grossmanandy at bfusa com and Simon Charette.
parent 56f34f9f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -466,7 +466,7 @@ checks to make sure the user has an email in the desired domain::
        from django.contrib.auth.decorators import user_passes_test

        def email_check(user):
            return '@example.com' in request.user.email
            return '@example.com' in user.email

        @user_passes_test(email_check)
        def my_view(request):