2511 |
2511 |
2512 if bundleData is None: |
2512 if bundleData is None: |
2513 from .HgBundleDialog import HgBundleDialog |
2513 from .HgBundleDialog import HgBundleDialog |
2514 dlg = HgBundleDialog(self.hgGetTagsList(repodir), |
2514 dlg = HgBundleDialog(self.hgGetTagsList(repodir), |
2515 self.hgGetBranchesList(repodir), |
2515 self.hgGetBranchesList(repodir), |
2516 self.hgGetBookmarksList(repodir)) |
2516 self.hgGetBookmarksList(repodir), |
|
2517 version=self.version) |
2517 if dlg.exec_() != QDialog.Accepted: |
2518 if dlg.exec_() != QDialog.Accepted: |
2518 return |
2519 return |
2519 |
2520 |
2520 revs, baseRevs, compression, bundleAll = dlg.getParameters() |
2521 revs, baseRevs, compression, bundleAll = dlg.getParameters() |
2521 else: |
2522 else: |