Open and write logs and config files in utf-8

This commit is contained in:
mathieui 2018-01-13 15:29:23 +01:00
parent b981327df5
commit 391eb27964
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
2 changed files with 6 additions and 4 deletions

View file

@ -337,7 +337,8 @@ class Config(RawConfigParser):
prefix, file = path.split(self.file_name)
filename = path.join(prefix, '.%s.tmp' % file)
fd = os.fdopen(
os.open(filename, os.O_WRONLY | os.O_CREAT, 0o600), 'w')
os.open(filename, os.O_WRONLY | os.O_CREAT, 0o600,), 'w',
encoding='utf-8')
for line in lines:
fd.write('%s\n' % line)
fd.close()

View file

@ -122,7 +122,7 @@ class Logger(object):
if not open_fd:
return
try:
fd = open(os.path.join(log_dir, room), 'a')
fd = open(os.path.join(log_dir, room), 'a', encoding='utf-8')
self._fds[room] = fd
return fd
except IOError:
@ -150,7 +150,7 @@ class Logger(object):
self._check_and_create_log_dir(jid, open_fd=False)
try:
fd = open(os.path.join(log_dir, jid), 'rb')
fd = open(os.path.join(log_dir, jid), 'rb', encoding='utf-8')
except FileNotFoundError:
log.info(
'Non-existing log file (%s)',
@ -228,7 +228,8 @@ class Logger(object):
if not self._roster_logfile:
try:
self._roster_logfile = open(
os.path.join(log_dir, 'roster.log'), 'a')
os.path.join(log_dir, 'roster.log'), 'a',
encoding='utf-8')
except IOError:
log.error(
'Unable to create the log file (%s)',