--- a/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py Fri Oct 11 19:51:20 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py Sat Oct 12 15:01:28 2013 +0200 @@ -66,12 +66,14 @@ if rev is None: if self.vcs.isExtensionActive("bookmarks"): bookmarksList = \ - self.vcs.getExtensionObject("bookmarks").hgGetBookmarksList(repodir) + self.vcs.getExtensionObject("bookmarks")\ + .hgGetBookmarksList(repodir) else: bookmarksList = None - dlg = HgRevisionSelectionDialog(self.vcs.hgGetTagsList(repodir), - self.vcs.hgGetBranchesList(repodir), - bookmarksList) + dlg = HgRevisionSelectionDialog( + self.vcs.hgGetTagsList(repodir), + self.vcs.hgGetBranchesList(repodir), + bookmarksList) if dlg.exec_() == QDialog.Accepted: rev = dlg.getRevision() @@ -102,7 +104,8 @@ if self.vcs.isExtensionActive("bookmarks"): bookmarksList = \ - self.vcs.getExtensionObject("bookmarks").hgGetBookmarksList(repodir) + self.vcs.getExtensionObject("bookmarks")\ + .hgGetBookmarksList(repodir) else: bookmarksList = None from .HgGpgSignDialog import HgGpgSignDialog