beremiz
Clone
Summary
Browse
Changes
Graph
Runtime/unix: Fix typo preventing start of Pyro server
2021-09-10, Edouard Tisserant
f31f062703a2
Runtime/unix: Fix typo preventing start of Pyro server
#!/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"]