beremiz

PY_EXT: fix wrong column header produced by csv_write_by_string.
py2compat
16 months ago, Edouard Tisserant
9e7283b30376
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"]