52 """ |
52 """ |
53 if rev is None: |
53 if rev is None: |
54 dlg = HgRevisionSelectionDialog( |
54 dlg = HgRevisionSelectionDialog( |
55 self.vcs.hgGetTagsList(), |
55 self.vcs.hgGetTagsList(), |
56 self.vcs.hgGetBranchesList(), |
56 self.vcs.hgGetBranchesList(), |
57 self.vcs.hgGetBookmarksList()) |
57 bookmarksList=self.vcs.hgGetBookmarksList(), |
|
58 revset=False |
|
59 ) |
58 if dlg.exec() == QDialog.DialogCode.Accepted: |
60 if dlg.exec() == QDialog.DialogCode.Accepted: |
59 rev = dlg.getRevision(revset=False) |
61 rev = dlg.getRevision() |
60 |
62 |
61 if rev is not None: |
63 if rev is not None: |
62 if rev == "": |
64 if rev == "": |
63 rev = "tip" |
65 rev = "tip" |
64 args = self.vcs.initCommand("sigcheck") |
66 args = self.vcs.initCommand("sigcheck") |