diff -r 4ef3b78ebb4e -r c4d0cac9b5c9 eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py --- a/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py Sat Sep 21 20:30:56 2019 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py Sat Sep 21 22:03:03 2019 +0200 @@ -106,19 +106,19 @@ """ Private slot used to list all signed changesets. """ - self.vcs.getExtensionObject("gpg")\ - .hgGpgSignatures(self.project.getProjectPath()) + self.vcs.getExtensionObject("gpg").hgGpgSignatures( + self.project.getProjectPath()) def __hgGpgVerifySignatures(self): """ Private slot used to verify the signatures of a revision. """ - self.vcs.getExtensionObject("gpg")\ - .hgGpgVerifySignatures(self.project.getProjectPath()) + self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures( + self.project.getProjectPath()) def __hgGpgSign(self): """ Private slot used to sign a revision. """ - self.vcs.getExtensionObject("gpg")\ - .hgGpgSign(self.project.getProjectPath()) + self.vcs.getExtensionObject("gpg").hgGpgSign( + self.project.getProjectPath())