68 dlg = HgRevisionSelectionDialog( |
68 dlg = HgRevisionSelectionDialog( |
69 self.vcs.hgGetTagsList(repodir), |
69 self.vcs.hgGetTagsList(repodir), |
70 self.vcs.hgGetBranchesList(repodir), |
70 self.vcs.hgGetBranchesList(repodir), |
71 self.vcs.hgGetBookmarksList(repodir)) |
71 self.vcs.hgGetBookmarksList(repodir)) |
72 if dlg.exec_() == QDialog.Accepted: |
72 if dlg.exec_() == QDialog.Accepted: |
73 rev = dlg.getRevision() |
73 rev = dlg.getRevision(revset=False) |
74 |
74 |
75 if rev is not None: |
75 if rev is not None: |
76 if rev == "": |
76 if rev == "": |
77 rev = "tip" |
77 rev = "tip" |
78 args = self.vcs.initCommand("sigcheck") |
78 args = self.vcs.initCommand("sigcheck") |