beremiz
Clone
Summary
Browse
Changes
Graph
PY_EXT: fix wrong column header produced by csv_write_by_string.
16 months ago, Edouard Tisserant
d317b2ee46ef
PY_EXT: fix wrong column header produced by csv_write_by_string.
#!/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"]