diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-07 01:25:30 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-07 01:25:30 +0200 |
commit | 1ce485c6faa15f624dcc79b3260bf3a9899b5cee (patch) | |
tree | 2e2da40dab7babf528853b3d0fd92ef4485abb8c /src/logger.py | |
parent | 53040305ce97bd532bd27cf0c2f626136f34a572 (diff) | |
download | poezio-1ce485c6faa15f624dcc79b3260bf3a9899b5cee.tar.gz poezio-1ce485c6faa15f624dcc79b3260bf3a9899b5cee.tar.bz2 poezio-1ce485c6faa15f624dcc79b3260bf3a9899b5cee.tar.xz poezio-1ce485c6faa15f624dcc79b3260bf3a9899b5cee.zip |
Fix #2354 (logs are badly colored with xhtml history)
- now it should work properly
- add a COLOR_LOG_MSG theming option, used both for local and remote
history
Diffstat (limited to 'src/logger.py')
-rw-r--r-- | src/logger.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger.py b/src/logger.py index e758bdc0..7ed0692f 100644 --- a/src/logger.py +++ b/src/logger.py @@ -151,7 +151,7 @@ class Logger(object): lines = m[pos-1:].decode(errors='replace').splitlines() messages = [] - color = '\x19%s}' % dump_tuple(get_theme().COLOR_INFORMATION_TEXT) + color = '\x19%s}' % dump_tuple(get_theme().COLOR_LOG_MSG) # now convert that data into actual Message objects idx = 0 |