From 430ee05b8a538508a9daa00ebaf73b7ef9c2eb4e Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Fri, 21 Mar 2025 04:54:58 -0700 Subject: [PATCH] Fixed PLW1514 (unspecified-encoding): `open` in text mode without explicit `encoding` argument --- management/mailconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 management/mailconfig.py diff --git a/management/mailconfig.py b/management/mailconfig.py old mode 100755 new mode 100644 index 2cc5277f..3c002183 --- a/management/mailconfig.py +++ b/management/mailconfig.py @@ -148,8 +148,8 @@ def get_mail_users_ex(env, with_archived=False): box_quota = 0 percent = '' try: - dirsize_file = os.path.join(env['STORAGE_ROOT'], 'mail/mailboxes/%s/%s/maildirsize' % (domain, user)) - with open(dirsize_file, 'r') as f: + dirsize_file = os.path.join(env['STORAGE_ROOT'], f'mail/mailboxes/{domain}/{user}/maildirsize') + with open(dirsize_file, 'r', encoding="utf-8") as f: box_quota = int(f.readline().split('S')[0]) for line in f.readlines(): (size, count) = line.split(' ')