eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py

changeset 7970
c4ee8a81584c
parent 7923
91e843545d9a
child 8218
7c09585bd960
equal deleted inserted replaced
7969:62eff8b34a8d 7970:c4ee8a81584c
103 103
104 def __hgGpgSignatures(self): 104 def __hgGpgSignatures(self):
105 """ 105 """
106 Private slot used to list all signed changesets. 106 Private slot used to list all signed changesets.
107 """ 107 """
108 self.vcs.getExtensionObject("gpg").hgGpgSignatures( 108 self.vcs.getExtensionObject("gpg").hgGpgSignatures()
109 self.project.getProjectPath())
110 109
111 def __hgGpgVerifySignatures(self): 110 def __hgGpgVerifySignatures(self):
112 """ 111 """
113 Private slot used to verify the signatures of a revision. 112 Private slot used to verify the signatures of a revision.
114 """ 113 """
115 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures( 114 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures()
116 self.project.getProjectPath())
117 115
118 def __hgGpgSign(self): 116 def __hgGpgSign(self):
119 """ 117 """
120 Private slot used to sign a revision. 118 Private slot used to sign a revision.
121 """ 119 """
122 self.vcs.getExtensionObject("gpg").hgGpgSign( 120 self.vcs.getExtensionObject("gpg").hgGpgSign()
123 self.project.getProjectPath())

eric ide

mercurial