beremiz
Clone
Summary
Browse
Changes
Graph
Use python 3 compatible exception syntax everywhere
2018-10-02, Andrey Skvortsov
5587c490a070
Use python 3 compatible exception syntax everywhere
#!/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"]