beremiz
Clone
Summary
Browse
Changes
Graph
Fix error when searching accross project. Collection of result wasn't initialized and was failing in case some CTN was returning no result.
2019-03-22, Edouard Tisserant
46a1e8d1e92c
Fix error when searching accross project. Collection of result wasn't initialized and was failing in case some CTN was returning no result.
#!/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"]