beremiz
Clone
Summary
Browse
Changes
Graph
Fixed typo leading to some exception in some rare corner cases in worker.py
2019-05-30, Edouard Tisserant
a1bf03277cec
Fixed typo leading to some exception in some rare corner cases in worker.py
#!/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"]