Refs #30116 -- Removed unnecessary str() calls in CommonPasswordValidator.
open() and gzip.open() supports path-like objects since Python 3.6.
This commit is contained in:
parent
888fdf182e
commit
b711eafd2a
|
@ -171,10 +171,10 @@ class CommonPasswordValidator:
|
||||||
|
|
||||||
def __init__(self, password_list_path=DEFAULT_PASSWORD_LIST_PATH):
|
def __init__(self, password_list_path=DEFAULT_PASSWORD_LIST_PATH):
|
||||||
try:
|
try:
|
||||||
with gzip.open(str(password_list_path), 'rt') as f:
|
with gzip.open(password_list_path, 'rt') as f:
|
||||||
self.passwords = {x.strip() for x in f}
|
self.passwords = {x.strip() for x in f}
|
||||||
except OSError:
|
except OSError:
|
||||||
with open(str(password_list_path)) as f:
|
with open(password_list_path) as f:
|
||||||
self.passwords = {x.strip() for x in f}
|
self.passwords = {x.strip() for x in f}
|
||||||
|
|
||||||
def validate(self, password, user=None):
|
def validate(self, password, user=None):
|
||||||
|
|
Loading…
Reference in New Issue