[2.0.x] Autobuild formatting (#14857)

This commit is contained in:
Bob Kuhn 2019-08-06 23:33:07 -05:00 committed by Scott Lahteine
parent 77f637763c
commit 5873b0b032

View file

@ -660,7 +660,9 @@ def line_print(line_input):
platformio_highlights = [ platformio_highlights = [
['Environment', 0, 'highlight_blue'], ['Environment', 0, 'highlight_blue'],
['[SKIP]', 1, 'warning'], ['[SKIP]', 1, 'warning'],
['[IGNORED]', 1, 'warning'],
['[ERROR]', 1, 'error'], ['[ERROR]', 1, 'error'],
['[FAILED]', 1, 'error'],
['[SUCCESS]', 1, 'highlight_green'] ['[SUCCESS]', 1, 'highlight_green']
] ]
@ -698,14 +700,15 @@ def line_print(line_input):
found_right = text.find(']', found + 1) found_right = text.find(']', found + 1)
write_to_screen_queue(text[ : found + 1 ]) write_to_screen_queue(text[ : found + 1 ])
write_to_screen_queue(text[found + 1 : found_right ], highlight[2]) write_to_screen_queue(text[found + 1 : found_right ], highlight[2])
write_to_screen_queue(text[found_right : ] + '\n') write_to_screen_queue(text[found_right : ] + '\n' + '\n')
break break
if did_something == False: if did_something == False:
r_loc = text.find('\r') + 1 r_loc = text.find('\r') + 1
if r_loc > 0 and r_loc < len(text): # need to split this line if r_loc > 0 and r_loc < len(text): # need to split this line
text = text.split('\r') text = text.split('\r')
for line in text: for line in text:
write_to_screen_queue(line + '\n') if line != "":
write_to_screen_queue(line + '\n')
else: else:
write_to_screen_queue(text + '\n') write_to_screen_queue(text + '\n')
# end - write_to_screen_with_replace # end - write_to_screen_with_replace