Fix non-ascii logging

Tested with UTF-8, KOI8-R and ISO-8859-2 encodings.
This commit is contained in:
Peter Šurda 2018-01-25 08:11:42 +01:00
parent 66b3c6d881
commit 8709051005
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def configureLogging():
'version': 1, 'version': 1,
'formatters': { 'formatters': {
'default': { 'default': {
'format': '%(asctime)s - %(levelname)s - %(message)s', 'format': u'%(asctime)s - %(levelname)s - %(message)s',
}, },
}, },
'handlers': { 'handlers': {