Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

init: change encoding of error messages to UTF-8

Changeset cc92b9bc76e6

Parent 6c3f06efe234

by Yuki KODAMA

Changes to one file · Browse files at cc92b9bc76e6 Showing diff from parent 6c3f06efe234 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hginit.py Stacked
 
134
135
136
137
 
138
139
140
141
 
142
143
144
 
134
135
136
 
137
138
139
140
 
141
142
143
144
@@ -134,11 +134,11 @@
  hg.repository(u, dest, create=1)   except hglib.RepoError, inst:   dialog.error_dialog(self, _('Unable to create new repository'), - str(inst)) + hglib.toutf(str(inst)))   return False   except util.Abort, inst:   dialog.error_dialog(self, _('Error when creating repository'), - str(inst)) + hglib.toutf(str(inst)))   return False   except:   import traceback