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

stable wctxactions: convert output and errors to unicode (fixes #330)

Changeset ce5a09ba5751

Parent 77636e0382dc

by Steve Borho

Changes to one file · Browse files at ce5a09ba5751 Showing diff from parent 77636e0382dc Diff from another changeset...

 
105
106
107
108
 
 
109
110
 
 
111
112
113
 
105
106
107
 
108
109
110
 
111
112
113
114
115
@@ -105,9 +105,11 @@
  notify = func(parent, hu, repo, files)   o, e = hu.getdata()   if e: - QMessageBox.warning(parent, name + _(' errors'), str(e)) + QMessageBox.warning(parent, name + _(' errors'), + hglib.tounicode(str(e)))   elif o: - QMessageBox.information(parent, name + _(' output'), str(o)) + QMessageBox.information(parent, name + _(' output'), + hglib.tounicode(str(o)))   elif notify:   wfiles = [repo.wjoin(x) for x in files]   shlib.shell_notify(wfiles)