beremiz
Clone
Summary
Browse
Changes
Graph
Fix blind replace ('text' into 'str') from py3 port
2023-12-09, Edouard Tisserant
a6e7dd8bac36
Fix blind replace ('text' into 'str') from py3 port
#!/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"]