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

stable qfold: fix patch message decoding (closes #364)

Changeset 597d9d739cee

Parent cef9c89278dd

by Wagner Bruna

Changes to one file · Browse files at 597d9d739cee Showing diff from parent cef9c89278dd Diff from another changeset...

 
117
118
119
120
121
122
 
 
 
123
124
125
 
117
118
119
 
 
 
120
121
122
123
124
125
@@ -117,9 +117,9 @@
  self.summ.setText(hglib.tounicode(txt))     def composeMsg(self, patches): - return '\n* * *\n'.join( - [self.repo.changectx('qtip').description()] - + [self.repo.changectx(p).description() for p in patches]) + return u'\n* * *\n'.join( + [hglib.tounicode(self.repo.changectx(p).description()) + for p in ['qtip'] + patches])     def getMessage(self):   text = self.msgte.text()