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

backout: fix aborting backout operation with non-English locale

Changeset d8d82873ae14

Parent e8e53b26a702

by Yuki KODAMA

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

Change 1 of 1 Show Entire File hggtk/​backout.py Stacked
 
110
111
112
113
 
114
115
116
 
110
111
112
 
113
114
115
116
@@ -110,7 +110,7 @@
  def backout(self, button, buf, revstr):   start, end = buf.get_bounds()   msg = buf.get_text(start, end) - cmdline = ['hg', 'backout', '--rev', revstr, '--message', msg] + cmdline = ['hg', 'backout', '--rev', revstr, '--message', hglib.fromutf(msg)]   dlg = hgcmd.CmdDialog(cmdline)   dlg.show_all()   dlg.run()