@@ -50,10 +50,10 @@ def format(self, record):
50
50
record .msg = '{}{}[WARNING]{}{}: ' .format (
51
51
Style .BRIGHT , Fore .RED , Fore .RESET , Style .RESET_ALL ) + record .msg
52
52
elif record .levelno > 10 :
53
- record .msg = '{}[INFO]{}: ' .format (
53
+ record .msg = '{}[INFO]{}: ' .format (
54
54
Style .BRIGHT , Style .RESET_ALL ) + record .msg
55
55
else :
56
- record .msg = '{}{}[DEBUG]{}{}: ' .format (
56
+ record .msg = '{}{}[DEBUG]{}{}: ' .format (
57
57
Style .BRIGHT , Fore .LIGHTBLACK_EX , Fore .RESET , Style .RESET_ALL ) + record .msg
58
58
return super (LevelDifferentiatingFormatter , self ).format (record )
59
59
@@ -131,7 +131,7 @@ def shprint(command, *args, **kwargs):
131
131
need_closing_newline = False
132
132
for line in output :
133
133
if logger .level > logging .DEBUG :
134
- string = '\r ' + 'working ... ' + line [:100 ].replace ('\n ' , '' ).rstrip () + ' ...'
134
+ string = '\r ' + ' ' * 11 + ' working ... ' + line [:100 ].replace ('\n ' , '' ).rstrip () + ' ...'
135
135
if len (string ) < 20 :
136
136
continue
137
137
if len (string ) < 120 :
@@ -969,7 +969,7 @@ def get_distribution(cls, ctx, name=None, recipes=[], allow_download=True,
969
969
'the given requirements:' )
970
970
pretty_log_dists (possible_dists )
971
971
else :
972
- info ('{} No existing dists meet the given requirements!{}' . format ( Fore . RED , Fore . RESET ) )
972
+ info ('No existing dists meet the given requirements!' )
973
973
974
974
975
975
# If any dist has perfect recipes, return it
0 commit comments