Changes between Initial Version and Version 1 of Ticket #34408
- Timestamp:
- Mar 11, 2023, 2:27:15 PM (20 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34408
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #34408 – Description
initial v1 3 3 Here is my code: 4 4 5 backends.py 6 ``` 5 {{{#!python 7 6 class EmailBackend(BaseBackend): 8 7 def authenticate(self, request, username=None, password=None): … … 26 25 print("hello") 27 26 return True 28 29 ``` 27 }}} 30 28 31 29 and logs 32 30 33 ``` 31 {{{ 34 32 [12/Mar/2023 00:01:05] "GET /login HTTP/1.1" 200 861 35 33 [12/Mar/2023 00:01:16] "POST /login HTTP/1.1" 302 0 36 34 [12/Mar/2023 00:01:16] "GET / HTTP/1.1" 200 370 37 ``` 35 }}} 38 36 39 37 as you can see there was no output saying "hello".