beremiz
Clone
Summary
Browse
Changes
Graph
runtime web settings: fix more python2 to 3 porting problems
15 months ago, Edouard Tisserant
d47ccfb0a107
runtime web settings: fix more python2 to 3 porting problems
#!/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"]