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

stable sync: set the pull source type to local when unbundling

Changeset f1b7a37a86d7

Parent bdd00cb47837

by Angel Ezquerra

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

 
907
908
909
 
 
 
910
 
 
911
912
913
 
907
908
909
910
911
912
913
914
915
916
917
918
@@ -907,7 +907,12 @@
  directory=self.repo.root,   filter=_FILE_FILTER)   if bundlefile: + # Select the "Local" scheme + self.schemecombo.setCurrentIndex(0) + # Set the pull source to the selected bundle file   self.pathentry.setText(bundlefile) + # Execute the incomming command, which will show the revisions in + # the bundle, and let the user accept or reject them   self.inclicked()     @pyqtSlot(QString)