Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable clone: use native separator in path names (closes #78)

Changeset f13c17c58639

Parent e28a4b2e7210

by André Sintzoff

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

 
325
326
327
328
 
329
330
331
 
333
334
335
336
 
337
338
339
 
325
326
327
 
328
329
330
331
 
333
334
335
 
336
337
338
339
@@ -325,7 +325,7 @@
  caption = _("Select source repository")   path = FD.getExistingDirectory(self, caption)   if path: - self.src_combo.setEditText(path) + self.src_combo.setEditText(QDir.toNativeSeparators(path))   self.src_combo.setFocus()     def browse_dest(self): @@ -333,7 +333,7 @@
  caption = _("Select destination repository")   path = FD.getExistingDirectory(self, caption)   if path: - self.dest_combo.setEditText(path) + self.dest_combo.setEditText(QDir.toNativeSeparators(path))   self.dest_combo.setFocus()     def command_started(self):