Minor fix (recognizing if it's colorizing handler or not)

This commit is contained in:
Miroslav Stampar 2012-07-12 14:55:54 +02:00
parent cba2a26b68
commit b320dc118d

View File

@ -702,9 +702,10 @@ def setColor(message, bold=False):
if level:
kb.currentMessage = level
if hasattr(LOGGER_HANDLER, "level_map"): # colorizing handler
if bold:
retVal = colored(message, color=None, on_color=None, attrs=("bold",))
elif hasattr(LOGGER_HANDLER, "level_map") and hasattr(kb, "currentMessage") and kb.currentMessage:
elif hasattr(kb, "currentMessage") and kb.currentMessage:
_ = LOGGER_HANDLER.level_map.get(logging.getLevelName(kb.currentMessage))
if _: