2908 from .HgExportDialog import HgExportDialog |
2908 from .HgExportDialog import HgExportDialog |
2909 dlg = HgExportDialog(self.hgGetBookmarksList(repodir), |
2909 dlg = HgExportDialog(self.hgGetBookmarksList(repodir), |
2910 self.version >= (4, 7, 0)) |
2910 self.version >= (4, 7, 0)) |
2911 if dlg.exec_() == QDialog.Accepted: |
2911 if dlg.exec_() == QDialog.Accepted: |
2912 filePattern, revisions, bookmark, switchParent, allText, noDates, \ |
2912 filePattern, revisions, bookmark, switchParent, allText, noDates, \ |
2913 git = dlg.getParameters() |
2913 git = dlg.getParameters() |
2914 |
2914 |
2915 args = self.initCommand("export") |
2915 args = self.initCommand("export") |
2916 args.append("--output") |
2916 args.append("--output") |
2917 args.append(filePattern) |
2917 args.append(filePattern) |
2918 args.append("--verbose") |
2918 args.append("--verbose") |