mirror of
https://github.com/codingo/Interlace.git
synced 2026-01-24 17:34:46 +01:00
Fixed closing tag order for colours
This commit is contained in:
@@ -28,7 +28,7 @@ class OutputHelper(object):
|
||||
formatting = {
|
||||
0: Color('{autoblue}[VERBOSE]{/autoblue}'),
|
||||
1: Color('{autogreen}[THREAD]{/autogreen}'),
|
||||
3: Color('{autobgyellow}{autored}[ERROR]{/autobgyellow}{/autored}')
|
||||
3: Color('{autobgyellow}{autored}[ERROR]{/autored}{/autobgyellow}')
|
||||
}
|
||||
|
||||
leader = formatting.get(level, '[#]')
|
||||
@@ -51,4 +51,4 @@ class OutputHelper(object):
|
||||
class Level(IntEnum):
|
||||
VERBOSE = 0
|
||||
THREAD = 1
|
||||
ERROR = 3
|
||||
ERROR = 3
|
||||
|
||||
Reference in New Issue
Block a user