Fixed an issue in the Mercurial log browser dialog.

Thu, 26 Oct 2017 19:03:26 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 26 Oct 2017 19:03:26 +0200
changeset 5930
9fe93d87d502
parent 5929
4ce93da7616e
child 5931
90b87ccc7021

Fixed an issue in the Mercurial log browser dialog.

Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py	Thu Oct 26 18:46:28 2017 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py	Thu Oct 26 19:03:26 2017 +0200
@@ -1544,7 +1544,7 @@
             
             self.__pullAct.setText(self.tr("Pull Selected Changes"))
             self.__fetchAct.setText(self.tr("Fetch Selected Changes"))
-            if self.vcs.canPull():
+            if self.vcs.canPull() and not bool(self.__bundle):
                 # step 1: determine number of selected draft changesets
                 #         i.e. those that can be pulled
                 selectedDraftItemsCount = 0

eric ide

mercurial