eric7/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py

branch
eric7
changeset 9025
9fe8cfa14542
parent 8881
54e42bc2437a
equal deleted inserted replaced
9024:640778fcd474 9025:9fe8cfa14542
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")

eric ide

mercurial