Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable wctxactions: pass patch data to QApplication.clipboard() as unicode (fixes #234)

Changeset b8bcc6ed744b

Parent 25f88a2677f1

by Steve Borho

Changes to one file · Browse files at b8bcc6ed744b Showing diff from parent 25f88a2677f1 Diff from another changeset...

 
146
147
148
149
 
150
151
152
 
146
147
148
 
149
150
151
152
@@ -146,7 +146,7 @@
  traceback.print_exc()   return   output = ui.popbuffer() - QApplication.clipboard().setText(output) + QApplication.clipboard().setText(hglib.tounicode(output))    def vdiff(parent, ui, repo, files):   dlg = visdiff.visualdiff(ui, repo, files, {})