Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable follow-up fix for 778b2ea72507

One case wasn't fixed correctly. While it wouldn't crash GTK anymore, it would
still lead to garbled display.

Changeset ebf6cbdb680a

Parent 533dcf5dbdf5

by Sune Foldager

Changes to one file · Browse files at ebf6cbdb680a Showing diff from parent 533dcf5dbdf5 Diff from another changeset...

 
221
222
223
224
225
226
227
 
228
229
230
 
221
222
223
 
224
225
 
226
227
228
229
@@ -221,10 +221,9 @@
  return hglib.toutf(ctx.description().replace('\0', ''))   elif item == 'summary':   value = ctx.description().replace('\0', '').split('\n')[0] - value = hglib.tounicode(value[:80])   if len(value) == 0:   return None - return hglib.toutf(value) + return hglib.toutf(hglib.tounicode(value)[:80])   elif item == 'user':   return hglib.toutf(ctx.user())   elif item == 'dateage':