Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

reporegistry: open repo after clone

TODO: check success of clone dialog

Changeset e62d46e1dd50

Parent 12c7f928532a

by Adrian Buehlmann

Changes to one file · Browse files at e62d46e1dd50 Showing diff from parent 12c7f928532a Diff from another changeset...

 
199
200
201
202
203
 
 
 
 
204
205
206
 
199
200
201
 
 
202
203
204
205
206
207
208
@@ -199,8 +199,10 @@
  return   root = self.selitem.internalPointer().rootpath()   d = CloneDialog(args=[root, root + '-clone'], parent=self) - d.exec_() - + res = d.exec_() + if True: + dest = d.getDest() + self.workbench.openRepo(dest)    class RepoRegistryView(QDockWidget):