Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

stable repowidget: fixes #1036 and the unicode error in multipatch result

Changeset ef6dbc818d88

Parent 9c54b9f24713

by Andrea Stagi

Changes to one file · Browse files at ef6dbc818d88 Showing diff from parent 9c54b9f24713 Diff from another changeset...

 
1485
1486
1487
1488
1489
 
 
1490
1491
1492
1493
1494
1495
1496
1497
 
 
1498
1499
1500
 
1485
1486
1487
 
 
1488
1489
1490
1491
1492
1493
1494
1495
 
 
1496
1497
1498
1499
1500
@@ -1485,16 +1485,16 @@
  '<a href="file:///%s">%s</a>%s'   '<a href="file:///%s">%s</a>') \   % (rev, str(self.repo[rev]), - patchdirname, patchdirname, os.path.sep, - patchfilename, patchshortname)) + hglib.tounicode(patchdirname), hglib.tounicode(patchdirname), os.path.sep, + hglib.tounicode(patchfilename), hglib.tounicode(patchshortname)))   else:   # Show a message box with a link to the export folder   qtlib.InfoMsgBox(_('Patches exported'),   _('%d patches were exported to:<p>'   '<a href="file:///%s">%s</a>') \   % (len(revisions), - strdir, - strdir)) + hglib.tounicode(strdir), + hglib.tounicode(strdir)))     def visualDiffRevision(self):   opts = dict(change=self.rev)