From 2007e11d7069b0f6ed673c7520ee7f480f07de68 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 23 May 2019 08:39:16 +0200 Subject: [PATCH] Forced utf-8 encoding when loading common passwords in CommonPasswordValidator. Previously we used `decode()` which defaults to utf-8. This change restores previous behavior. Follow up to 28eac41510eb9de728bdfbc22a36f33ac75394f2. --- django/contrib/auth/password_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/password_validation.py b/django/contrib/auth/password_validation.py index bfdc096a9a..59fd726f9f 100644 --- a/django/contrib/auth/password_validation.py +++ b/django/contrib/auth/password_validation.py @@ -171,7 +171,7 @@ class CommonPasswordValidator: def __init__(self, password_list_path=DEFAULT_PASSWORD_LIST_PATH): try: - with gzip.open(password_list_path, 'rt') as f: + with gzip.open(password_list_path, 'rt', encoding='utf-8') as f: self.passwords = {x.strip() for x in f} except OSError: with open(password_list_path) as f: