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

clone: fix a couple of tracebacks

Changeset ed22029c46eb

Parent d17d07dde9f7

by TK Soh

Changes to one file · Browse files at ed22029c46eb Showing diff from parent d17d07dde9f7 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​clone.py Stacked
 
100
101
102
103
 
104
105
106
 
156
157
158
159
 
160
161
162
 
100
101
102
 
103
104
105
106
 
156
157
158
 
159
160
161
162
@@ -100,7 +100,7 @@
  # add pre-defined src paths to pull-down list   sympaths = [x[1] for x in ui.ui().configitems('paths')]   recent = [x for x in self._recent_src] - sync = [x for x in self._sync_src] + syncsrc = [x for x in self._sync_src]   paths = list(set(sympaths + recent + syncsrc))   paths.sort()   for p in paths: @@ -156,7 +156,7 @@
    # options   option_box = gtk.VBox() - self._opt_update = gtk.CheckButton(_('do not update the new working directory') + self._opt_update = gtk.CheckButton(_('do not update the new working directory'))   self._opt_pull = gtk.CheckButton(_('use pull protocol to copy metadata'))   self._opt_uncomp = gtk.CheckButton(_('use uncompressed transfer'))   self._opt_proxy = gtk.CheckButton(_('use proxy server'))