You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/passlib/handlers/bcrypt.py", line 620, in _load_backend_mixin
version = _bcrypt.about.version
AttributeError: module 'bcrypt' has no attribute 'about'
I think the passlib v1.7.4 didn't support bcrypt v4.1.2. There is no about.py file in bcrypt v4.1.2 package
The text was updated successfully, but these errors were encountered:
Change your password (the new one can be the same as the old)
The following appears in the logs:
web (stderr) | 2024-03-04 09:37:56,520 [48366] [passlib.handlers.bcrypt:WARNING] (trapped) error reading bcrypt version
web (stderr) | Traceback (most recent call last):
web (stderr) | File "/Users/robert/hypothesis/h/.tox/dev/lib/python3.11/site-packages/passlib/handlers/bcrypt.py", line 620, in _load_backend_mixin
web (stderr) | version = _bcrypt.__about__.__version__
web (stderr) | ^^^^^^^^^^^^^^^^^
web (stderr) | AttributeError: module 'bcrypt' has no attribute '__about__'
The warning on its own is harmless since the version variable here is only used to write a message to debug logs. See upstream code:
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/passlib/handlers/bcrypt.py", line 620, in _load_backend_mixin
version = _bcrypt.about.version
AttributeError: module 'bcrypt' has no attribute 'about'
I think the passlib v1.7.4 didn't support bcrypt v4.1.2. There is no about.py file in bcrypt v4.1.2 package
The text was updated successfully, but these errors were encountered: