Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

stable revert: handle non-ascii filenames in prompt (closes #824)

Changeset 3b6efcbbe907

Parent aa23bf637b70

by Steve Borho

Changes to one file · Browse files at 3b6efcbbe907 Showing diff from parent aa23bf637b70 Diff from another changeset...

 
24
25
26
27
 
28
29
30
 
32
33
34
35
 
36
37
38
 
24
25
26
 
27
28
29
30
 
32
33
34
 
35
36
37
38
@@ -24,7 +24,7 @@
  f = self.windowFlags()   self.setWindowFlags(f & ~Qt.WindowContextHelpButtonHint)   self.repo = repo - self.wfiles = [ repo.wjoin(wfile) for wfile in wfiles ] + self.wfiles = [repo.wjoin(wfile) for wfile in wfiles]   self.rev = str(rev)     self.setLayout(QVBoxLayout()) @@ -32,7 +32,7 @@
  if len(wfile) == 1:   lblText = _('<b>Revert %s to its contents'   ' at revision %d?</b>') % ( - wfiles[0], rev) + hglib.tounicode(wfiles[0]), rev)   else:   lblText = _('<b>Revert %d files to their contents'   ' at revision %d?</b>') % (