diff options
author | mathieui <mathieui@mathieui.net> | 2019-09-19 23:14:55 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2019-09-19 23:14:55 +0200 |
commit | 41e4c95636a204572dfdefce65ee1ff5e07eac30 (patch) | |
tree | acaf03ee5635c15f9f7653fca06f827d43a0c977 | |
parent | 31c605528c0ad8b22d617073fb2e1722b82fabb2 (diff) | |
download | poezio-41e4c95636a204572dfdefce65ee1ff5e07eac30.tar.gz poezio-41e4c95636a204572dfdefce65ee1ff5e07eac30.tar.bz2 poezio-41e4c95636a204572dfdefce65ee1ff5e07eac30.tar.xz poezio-41e4c95636a204572dfdefce65ee1ff5e07eac30.zip |
Prevent the logging module from vomiting all over stderr on OSError
it is unreadable and not very useful.
-rw-r--r-- | poezio/poezio.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/poezio/poezio.py b/poezio/poezio.py index 82403fdb..e38871c6 100644 --- a/poezio/poezio.py +++ b/poezio/poezio.py @@ -85,6 +85,9 @@ def main(): config.setup_logging() config.post_logging_setup() + import logging + logging.raiseExceptions = False + from poezio.config import options if options.check_config: |