Rewritten the weird imports in debug

This commit is contained in:
Dmitri Bogomolov 2021-07-07 21:49:56 +03:00
parent 822f58ea5d
commit b75585f26c
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -35,26 +35,15 @@ Logging is thread-safe so you don't have to worry about locks,
just import and log.
"""
# import ConfigParser
import sys
if sys.version_info[0] == 3:
# python 3
import configparser as ConfigParser
else:
# python 2
import ConfigParser
import logging
import logging.config
import os
import sys
if sys.version_info[0] == 3:
from . import helper_startup
from . import state
else:
import helper_startup
import state
from six.moves import configparser
import helper_startup
import state
helper_startup.loadConfig()
@ -86,7 +75,7 @@ def configureLogging():
False,
'Loaded logger configuration from %s' % logging_config
)
except (OSError, ConfigParser.NoSectionError, KeyError):
except (OSError, configparser.NoSectionError, KeyError):
if os.path.isfile(logging_config):
fail_msg = \
'Failed to load logger configuration from %s, using default' \