Skip to content

Commit

Permalink
change >= to > for correctness
Browse files Browse the repository at this point in the history
  • Loading branch information
chander committed Jan 10, 2024
1 parent af5c6da commit e213f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/settings.py
Expand Up @@ -64,7 +64,7 @@
'django.contrib.auth.hashers.MD5PasswordHasher',
]
# Django 5.0 removed this hasher
if DJANGO_VERSION >= DJANGO_42:
if DJANGO_VERSION > DJANGO_42:
PASSWORD_HASHERS.remove('django.contrib.auth.hashers.CryptPasswordHasher')


Expand Down

0 comments on commit e213f6d

Please sign in to comment.