Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7.5, 0.7.6, and 0.8

hgcmd: execute toutf only once

Changeset ff74e1221229

Parent ba19c0fdb0e4

by Simon Heimberg

Changes to one file · Browse files at ff74e1221229 Showing diff from parent ba19c0fdb0e4 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgcmd.py Stacked
 
20
21
22
23
 
24
25
26
 
20
21
22
 
23
24
25
26
@@ -20,7 +20,7 @@
  def __init__(self, cmdline, progressbar=True, width=520, height=400):   title = 'hg ' + ' '.join(cmdline[1:])   if len(title) > 80: - title = toutf(title[:80] + '...') + title = title[:80] + '...'   title = toutf(title.replace('\n', ' '))   gtk.Dialog.__init__(self,   title=title,