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 bugreport: exception messages must be converted to unicode for display

Changeset de4a2cbd7d05

Parent 0c2bed6bee4b

by Steve Borho

Changes to one file · Browse files at de4a2cbd7d05 Showing diff from parent 0c2bed6bee4b Diff from another changeset...

 
132
133
134
135
 
136
137
138
 
132
133
134
 
135
136
137
138
@@ -132,7 +132,7 @@
  values = opts.get('values', [])   msgopts = {}   for i, val in enumerate(values): - msgopts['arg' + str(i)] = Qt.escape(val) + msgopts['arg' + str(i)] = Qt.escape(hglib.tounicode(val))   try:   text = text % msgopts   except Exception, e: