File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -580,15 +580,13 @@ def __init__(self, output):
580580 self .matched = b''
581581
582582 def _output_write (self , data ):
583- # Windows 10 bug since the Fall Creators Update, sometimes writing to console randomly fails
584- # (but usually succeeds afterwards, it seems.)
585- # Ref https://github.com/espressif/esp-idf/issues/1136
586- for tries in range (3 ):
587- try :
588- self .output .write (data )
589- return
590- except IOError :
591- pass
583+ try :
584+ self .output .write (data )
585+ except IOError :
586+ # Windows 10 bug since the Fall Creators Update, sometimes writing to console randomly throws
587+ # an exception (however, the character is still written to the screen)
588+ # Ref https://github.com/espressif/esp-idf/issues/1136
589+ pass
592590
593591 def write (self , data ):
594592 for b in data :
You can’t perform that action at this time.
0 commit comments