Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3008
7848489bcb92
child 3145
a9de05d4a22f
--- a/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py	Fri Oct 18 23:00:41 2013 +0200
@@ -68,12 +68,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()
         
@@ -104,7 +106,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

eric ide

mercurial