beremiz
Clone
Summary
Browse
Changes
Graph
Fix 'msgid' format string with unnamed arguments cannot be properly localized
2018-10-03, Andrey Skvortsov
68e7da937162
Fix 'msgid' format string with unnamed arguments cannot be properly localized
#!/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"]