diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-06 17:26:33 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-06 17:26:33 +0200 |
commit | e000466ab8950fd91ef3723e60cc9397262ca527 (patch) | |
tree | 9f7af41f102d468e51786eb10ae4b0ba4b863c25 /src/poezio.py | |
parent | fe070163228fba339445483883a05d0178f321cd (diff) | |
download | poezio-e000466ab8950fd91ef3723e60cc9397262ca527.tar.gz poezio-e000466ab8950fd91ef3723e60cc9397262ca527.tar.bz2 poezio-e000466ab8950fd91ef3723e60cc9397262ca527.tar.xz poezio-e000466ab8950fd91ef3723e60cc9397262ca527.zip |
Do not instantiate the message logger at module level
.
Diffstat (limited to 'src/poezio.py')
-rw-r--r-- | src/poezio.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/poezio.py b/src/poezio.py index 99831896..219a2279 100644 --- a/src/poezio.py +++ b/src/poezio.py @@ -33,6 +33,8 @@ def main(): from config import options + import logger + logger.create_logger() import core |