##// END OF EJS Templates
only process cr if it's found...
MinRK -
Show More
@@ -70,7 +70,7 b' def coalesce_streams(cell, resources, index):'
70
70
71 # process \r characters
71 # process \r characters
72 for output in new_outputs:
72 for output in new_outputs:
73 if output.output_type == 'stream':
73 if output.output_type == 'stream' and '\r' in output.text:
74 output.text = cr_pat.sub('', output.text)
74 output.text = cr_pat.sub('', output.text)
75
75
76 cell.outputs = new_outputs
76 cell.outputs = new_outputs
General Comments 0
You need to be logged in to leave comments. Login now