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

stable hginit: remove needless string conversion (fixes #669)

Changeset 03708ea6ee24

Parent 2ef9eb32d886

by Steve Borho

Changes to one file · Browse files at 03708ea6ee24 Showing diff from parent 2ef9eb32d886 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, ...)