beremiz
Clone
Summary
Browse
Changes
Graph
Remove executable bit from source files where it's not needed.
2018-08-28, Andrey Skvortsov
f19788028d99
Remove executable bit from source files where it's not needed.
#!/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"]