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

stable thread: ensure QString arguments to progress signal are strings (closes #157)

Changeset 1a7f211dbd8e

Parent 7a9ca2f2b3b4

by Steve Borho

Changes to one file · Browse files at 1a7f211dbd8e Showing diff from parent 7a9ca2f2b3b4 Diff from another changeset...

 
85
86
87
88
89
90
 
 
 
91
92
93
 
85
86
87
 
 
 
88
89
90
91
92
93
@@ -85,9 +85,9 @@
  return self.responseq.get(True)     def progress(self, topic, pos, item, unit, total): - topic = hglib.tounicode(topic) - item = hglib.tounicode(item) - unit = hglib.tounicode(unit) + topic = hglib.tounicode(topic or '') + item = hglib.tounicode(item or '') + unit = hglib.tounicode(unit or '')   self.progressSignal.emit(topic, pos, item, unit, total)    class QtUi(uimod.ui):