diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-08-16 14:53:29 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-08-16 14:53:29 +0200 |
commit | d917ec5ea246283e64eb433069f373f39f8ed4d7 (patch) | |
tree | 79de78daaed877d8a616b50df67684a0d796ba81 /src | |
parent | 84fc61eec47dd79c68a86d2fb906f7978f3a9029 (diff) | |
download | poezio-d917ec5ea246283e64eb433069f373f39f8ed4d7.tar.gz poezio-d917ec5ea246283e64eb433069f373f39f8ed4d7.tar.bz2 poezio-d917ec5ea246283e64eb433069f373f39f8ed4d7.tar.xz poezio-d917ec5ea246283e64eb433069f373f39f8ed4d7.zip |
Do not print a message on the screen on error
Diffstat (limited to 'src')
-rw-r--r-- | src/xhtml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xhtml.py b/src/xhtml.py index 16972b65..79c1b82a 100644 --- a/src/xhtml.py +++ b/src/xhtml.py @@ -53,7 +53,7 @@ def get_body_from_message_stanza(message): try: shell_body = xhtml_code_to_shell_colors(xhtml_body) except OSError: - log.error('html parsing failed') + log.debug('html parsing failed') else: return shell_colors_to_poezio_colors(shell_body) return message['body'] |