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

clone: convert encoding of initial src & dest paths to UTF-8

Changeset c04ea54dcf0c

Parent 03c1153c76d6

by Yuki KODAMA

Changes to one file · Browse files at c04ea54dcf0c Showing diff from parent 03c1153c76d6 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​clone.py Stacked
 
11
12
13
14
 
15
16
17
 
29
30
31
32
 
33
34
35
 
11
12
13
 
14
15
16
17
 
29
30
31
 
32
33
34
35
@@ -11,7 +11,7 @@
   from mercurial import ui, util  from thgutil.i18n import _ -from thgutil import shlib, settings +from thgutil import hglib, shlib, settings  from hggtk import gdialog, gtklib, hgcmd    class CloneDialog(gtk.Window): @@ -29,7 +29,7 @@
  self.recentsrc = self.clonesettings.mrul('src_paths')   self.recentdest = self.clonesettings.mrul('dest_paths')   - srcpath = os.getcwd() + srcpath = hglib.toutf(os.getcwd())   destpath = srcpath   if len(repos) > 1:   srcpath = repos[0]