Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable cmdui: allow encoding errors to replace chars in hg output stream (closes #114)

Changeset 10cdfc8ad20c

Parent c929aaf1e647

by Steve Borho

Changes to one file · Browse files at 10cdfc8ad20c Showing diff from parent c929aaf1e647 Diff from another changeset...

 
313
314
315
316
 
 
317
318
319
 
313
314
315
 
316
317
318
319
320
@@ -313,7 +313,8 @@
  return # run next command   else:   self.queue = [] - self.rawoutlines = [hglib.fromunicode(self.thread.rawoutput.join(''))] + text = self.thread.rawoutput.join('') + self.rawoutlines = [hglib.fromunicode(text, 'replace')]     self.commandFinished.emit(ret)