Remove artificial centering from output labels

This commit is contained in:
jpic 2020-08-02 20:10:19 +02:00
parent 96c533fc1a
commit bc7cb9c355

View File

@ -118,7 +118,7 @@ class Output:
def test(self, action):
self(''.join([
self.colors['purplebold'],
'! TEST ',
'! TEST ',
self.colors['reset'],
self.colorized(action),
'\n',
@ -128,7 +128,7 @@ class Output:
if self.debug:
self(''.join([
self.colors['bluebold'],
'+ CLEAN ',
'+ CLEAN ',
self.colors['reset'],
self.colorized(action),
'\n',
@ -138,7 +138,7 @@ class Output:
if self.debug is True or 'visit' in str(self.debug):
self(''.join([
self.colors['orangebold'],
' START ',
'START ',
self.colors['reset'],
self.colorized(action),
'\n',
@ -148,7 +148,7 @@ class Output:
if self.debug is True or 'visit' in str(self.debug):
self(''.join([
self.colors['cyanbold'],
' INFO ',
'INFO ',
self.colors['reset'],
text,
'\n',