I am using Django 2.0+ and am attempting to just plug in the existing password reset function into my website. If the email does not exist, it successfully submits. If it DOES exist, I get this error:
'microsecond' is an invalid keyword argument for replace()
I never touched any of the backend code for this function so I would assume it would just work out of the box.
Traceback:
JavaScript
x
42
42
1
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocorehandlersexception.py in inner
2
response = get_response(request) …
3
▶ Local vars
4
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocorehandlersbase.py in _get_response
5
response = self.process_exception_by_middleware(e, request) …
6
▶ Local vars
7
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocorehandlersbase.py in _get_response
8
response = wrapped_callback(request, *callback_args, **callback_kwargs) …
9
▶ Local vars
10
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangoviewsgenericbase.py in view
11
return self.dispatch(request, *args, **kwargs) …
12
▶ Local vars
13
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangoutilsdecorators.py in _wrapper
14
return bound_method(*args, **kwargs) …
15
▶ Local vars
16
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangoutilsdecorators.py in _wrapped_view
17
response = view_func(request, *args, **kwargs) …
18
▶ Local vars
19
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocontribauthviews.py in dispatch
20
return super().dispatch(*args, **kwargs) …
21
▶ Local vars
22
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangoviewsgenericbase.py in dispatch
23
return handler(request, *args, **kwargs) …
24
▶ Local vars
25
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangoviewsgenericedit.py in post
26
return self.form_valid(form) …
27
▶ Local vars
28
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocontribauthviews.py in form_valid
29
form.save(**opts) …
30
▶ Local vars
31
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocontribauthforms.py in save
32
'token': token_generator.make_token(user), …
33
▶ Local vars
34
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocontribauthtokens.py in make_token
35
return self._make_token_with_timestamp(user, self._num_days(self._today())) …
36
▶ Local vars
37
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocontribauthtokens.py in _make_token_with_timestamp
38
self._make_hash_value(user, timestamp), …
39
▶ Local vars
40
C:Usersdjankdocumentsgithublfgm_2019libsite-packagesdjangocontribauthtokens.py in _make_hash_value
41
login_timestamp = '' if user.last_login is None else user.last_login.replace(microsecond=0, tzinfo=None)
42
I do have a CustomUser model I use, but I can’t see if there is a connection or, if so, where the connection might be with that.
Help!
Advertisement
Answer
Just go to the tokens.py
file (for me, it was located here:
AppDataLocalProgramsPythonPython38-32Libsite-packagesdjangocontribauthtokens.py
) and change the following line:
JavaScript
1
2
1
user.last_login.replace(microsecond=0,tzinfo=None)
2
to
JavaScript
1
2
1
user.last_login.replace()
2