beremiz

Fix debugger exception caused by py2/py3 merging error.
py2compat
16 months ago, Edouard Tisserant
aaa12d90b1bf
Fix debugger exception caused by py2/py3 merging error.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# See COPYING.Runtime file for copyrights details.
LogLevels = ["CRITICAL", "WARNING", "INFO", "DEBUG"]
LogLevelsCount = len(LogLevels)
LogLevelsDict = dict(zip(LogLevels, range(LogLevelsCount)))
LogLevelsDefault = LogLevelsDict["DEBUG"]