Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

Merge with stable

Changeset 547e51865271

Parents 2b5ba0e075b9

Parents 03708ea6ee24

by Steve Borho

Changes to one file · Browse files at 547e51865271 Showing diff from parent 2b5ba0e075b9 03708ea6ee24 Diff from another changeset...

 
106
107
108
109
110
111
 
 
112
113
114
 
106
107
108
 
 
 
109
110
111
112
113
@@ -106,9 +106,8 @@
  caption = _('Select Destination Folder')   path = FD.getExistingDirectory(parent=self, caption=caption,   options=FD.ShowDirsOnly | FD.ReadOnly) - response = str(path) - if response: - self.dest_edit.setText(response) + if path: + self.dest_edit.setText(path)     def compose_command(self):   # just a stub for extension with extra options (--mq, --ssh, ...)