--- a/eric7/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py Wed Apr 13 18:16:23 2022 +0200 +++ b/eric7/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py Wed Apr 13 19:49:25 2022 +0200 @@ -54,9 +54,11 @@ dlg = HgRevisionSelectionDialog( self.vcs.hgGetTagsList(), self.vcs.hgGetBranchesList(), - self.vcs.hgGetBookmarksList()) + bookmarksList=self.vcs.hgGetBookmarksList(), + revset=False + ) if dlg.exec() == QDialog.DialogCode.Accepted: - rev = dlg.getRevision(revset=False) + rev = dlg.getRevision() if rev is not None: if rev == "":