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

stable mq: fix deletion of patch with non-ascii name

Changeset f0aa1fc877ff

Parent 70cb77d81e05

by patrice.lacouture@gmail.com

Changes to one file · Browse files at f0aa1fc877ff Showing diff from parent 70cb77d81e05 Diff from another changeset...

 
30
31
32
33
34
 
 
 
35
36
37
 
30
31
32
 
 
33
34
35
36
37
38
@@ -30,8 +30,9 @@
    self.setLayout(QVBoxLayout())   - lbl = QLabel(_('<b>Remove patches from queue?<ul><li>%s</ul></b>') % - '<li>'.join(patches)) + msg = _('Remove patches from queue?') + patchesu = u'<li>'.join([hglib.tounicode(p) for p in patches]) + lbl = QLabel(u'<b>%s<ul><li>%s</ul></b>' % (msg, patchesu))   self.layout().addWidget(lbl)     self.keepchk = QCheckBox(_('Keep patch files'))