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

stable mq: unicode safe comparison for queueCombo

Changeset fb45387f4b32

Parent 97448887b6b0

by Johan Samyn

Changes to one file · Browse files at fb45387f4b32 Showing diff from parent 97448887b6b0 Diff from another changeset...

 
282
283
284
285
 
 
286
287
288
 
282
283
284
 
285
286
287
288
289
@@ -282,7 +282,8 @@
  def finished(ret):   if ret:   for i in xrange(self.queueCombo.count()): - if self.queueCombo.itemText(i) == self.repo.thgactivemqname: + if (hglib.fromunicode(self.queueCombo.itemText(i)) + == self.repo.thgactivemqname):   self.queueCombo.setCurrentIndex(i)   break   self.finishfunc = finished