Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

datamine: grep output does not arrive one line per ui.write() anymore

Improvements for coloring grep output have changed the way this output
arrives.

Changeset 248b28a630fc

Parent 6ae4a2c36f8b

by Steve Borho

Changes to one file · Browse files at 248b28a630fc Showing diff from parent 6ae4a2c36f8b Diff from another changeset...

 
490
491
492
 
493
494
 
 
 
495
496
497
 
490
491
492
493
494
 
495
496
497
498
499
500
@@ -490,8 +490,11 @@
  """   Handle all the messages currently in the queue (if any).   """ + text = ''   while q.qsize(): - line = q.get(0).rstrip('\r\n') + text += q.get(0) + + for line in text.splitlines():   try:   (path, revid, text) = line.split(':', 2)   except ValueError: