42 res = False |
42 res = False |
43 dlg = HgHisteditConfigDialog(self.vcs.hgGetTagsList(), |
43 dlg = HgHisteditConfigDialog(self.vcs.hgGetTagsList(), |
44 self.vcs.hgGetBranchesList(), |
44 self.vcs.hgGetBranchesList(), |
45 self.vcs.hgGetBookmarksList(), |
45 self.vcs.hgGetBookmarksList(), |
46 rev) |
46 rev) |
47 if dlg.exec() == QDialog.Accepted: |
47 if dlg.exec() == QDialog.DialogCode.Accepted: |
48 rev, force, keep = dlg.getData() |
48 rev, force, keep = dlg.getData() |
49 |
49 |
50 args = self.vcs.initCommand("histedit") |
50 args = self.vcs.initCommand("histedit") |
51 args.append("-v") |
51 args.append("-v") |
52 if keep: |
52 if keep: |