Ticket #2325: 2325.diff
File 2325.diff, 522 bytes (added by , 18 years ago) |
---|
-
django/contrib/auth/__init__.py
38 38 if user is None: 39 39 continue 40 40 # Annotate the user object with the path of the backend. 41 user.backend = str(backend.__class__)41 user.backend = "%s.%s" % (backend.__module__, backend.__class__.__name__) 42 42 return user 43 43 44 44 def login(request, user):