Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.5, 0.6, and 0.7

commit: accept commit message in multibyte charset

Changeset 69f1243cfc7b

Parent 5313a09bdd5f

by TK Soh

Changes to one file · Browse files at 69f1243cfc7b Showing diff from parent 5313a09bdd5f Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​commit.py Stacked
 
29
30
31
 
32
33
34
 
324
325
326
327
 
328
329
330
 
29
30
31
32
33
34
35
 
325
326
327
 
328
329
330
331
@@ -29,6 +29,7 @@
 from gtools import cmdtable  from status import GStatus  from hgcmd import CmdDialog +from hglib import fromutf    class GCommit(GStatus):   """GTK+ based dialog for displaying repository status and committing changes. @@ -324,7 +325,7 @@
  cmdline = ["hg", "commit", "--verbose", "--repository", self.repo.root]   if self.opts['addremove']:   cmdline += ['--addremove'] - cmdline += ['--message', self.opts['message']] + cmdline += ['--message', fromutf(self.opts['message'])]   cmdline += [self.repo.wjoin(x) for x in files]   dialog = CmdDialog(cmdline, True)   dialog.set_transient_for(self)