Remove artificial centering from output labels

This commit is contained in:
jpic
2021-04-24 13:12:18 +02:00
parent 30798fc66c
commit 6e7f957d49
+4 -4
View File
@@ -118,7 +118,7 @@ class Output:
def test(self, action): def test(self, action):
self(''.join([ self(''.join([
self.colors['purplebold'], self.colors['purplebold'],
'! TEST ', '! TEST ',
self.colors['reset'], self.colors['reset'],
self.colorized(action), self.colorized(action),
'\n', '\n',
@@ -128,7 +128,7 @@ class Output:
if self.debug: if self.debug:
self(''.join([ self(''.join([
self.colors['bluebold'], self.colors['bluebold'],
'+ CLEAN ', '+ CLEAN ',
self.colors['reset'], self.colors['reset'],
self.colorized(action), self.colorized(action),
'\n', '\n',
@@ -138,7 +138,7 @@ class Output:
if self.debug is True or 'visit' in str(self.debug): if self.debug is True or 'visit' in str(self.debug):
self(''.join([ self(''.join([
self.colors['orangebold'], self.colors['orangebold'],
' START ', '⚠ START ',
self.colors['reset'], self.colors['reset'],
self.colorized(action), self.colorized(action),
'\n', '\n',
@@ -148,7 +148,7 @@ class Output:
if self.debug is True or 'visit' in str(self.debug): if self.debug is True or 'visit' in str(self.debug):
self(''.join([ self(''.join([
self.colors['cyanbold'], self.colors['cyanbold'],
' INFO ', '➤ INFO ',
self.colors['reset'], self.colors['reset'],
text, text,
'\n', '\n',