Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

archive: fix encoding issues

Changeset ab5594bd4b81

Parent 4f8676d8cd06

by Yuki KODAMA

Changes to one file · Browse files at ab5594bd4b81 Showing diff from parent 4f8676d8cd06 Diff from another changeset...

 
194
195
196
 
197
198
199
200
 
201
202
203
204
205
206
 
207
208
209
 
194
195
196
197
198
199
200
 
201
202
203
204
205
206
 
207
208
209
210
@@ -194,16 +194,17 @@
    def browse_clicked(self, button):   """Select the destination directory or file""" + dest = hglib.fromutf(self.destentry.get_text())   select = self.get_selected_archive_type()   if select['type'] == 'files':   response = gtklib.NativeFolderSelectDialog( - initial=self.destentry.get_text(), + initial=dest,   title=_('Select Destination Folder')).run()   else:   ext = '*' + select['ext']   label = '%s (%s)' % (select['label'], ext)   response = gtklib.NativeSaveFileDialogWrapper( - InitialDir=self.destentry.get_text(), + InitialDir=dest,   Title=_('Select Destination File'),   Filter=((label, ext),)).run()