Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

hggtk/clone: do not show symbolic paths on dest list

Changeset 20732ba6b474

Parent 66b4d5869034

by TK Soh

Changes to one file · Browse files at 20732ba6b474 Showing diff from parent 66b4d5869034 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​clone.py Stacked
 
135
136
137
138
139
140
 
 
141
142
143
 
135
136
137
 
 
 
138
139
140
141
142
@@ -135,9 +135,8 @@
    # add pre-defined dest paths to pull-down list   recentdest = self._settings.get('dest_paths', []) - paths = list(set(sympaths + recentdest)) - paths.sort() - for p in paths: self._destlist.append([p]) + for p in recentdest: + self._destlist.append([p])     # revision input   revbox = gtk.HBox()