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

stable qtlib: force unicode for the markup strings

Changeset 59fb47375f51

Parent ed76a165ba55

by Gilles Moris

Changes to one file · Browse files at 59fb47375f51 Showing diff from parent ed76a165ba55 Diff from another changeset...

 
191
192
193
194
 
195
196
197
 
191
192
193
 
194
195
196
197
@@ -191,7 +191,7 @@
  msg = hglib.tounicode(msg)   msg = Qt.escape(msg)   msg = msg.replace('\n', '<br />') - return '<span style="%s">%s</span>' % (style, msg) + return u'<span style="%s">%s</span>' % (style, msg)    def descriptionhtmlizer(ui):   """Return a function to mark up ctx.description() as an HTML