Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py

changeset 3268
8bfa66a9138a
parent 3265
972d6be9dde7
child 3284
8f7d97997243
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py	Sun Feb 09 15:10:53 2014 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py	Sun Feb 09 16:01:19 2014 +0100
@@ -181,7 +181,8 @@
                 self.__showError(err)
             elif self.mode != "incoming" or \
                 (self.vcs.bundleFile and
-                 os.path.exists(self.vcs.bundleFile)):
+                 os.path.exists(self.vcs.bundleFile)) or \
+                    self.bundle:
                 out, err = self.__hgClient.runcommand(args)
                 if err:
                     self.__showError(err)
@@ -204,7 +205,8 @@
                 if procStarted:
                     process.waitForFinished(30000)
             
-            if self.vcs.bundleFile and os.path.exists(self.vcs.bundleFile):
+            if self.vcs.bundleFile and os.path.exists(self.vcs.bundleFile) or \
+                    self.bundle:
                 self.process.start('hg', args)
                 procStarted = self.process.waitForStarted(5000)
                 if not procStarted:

eric ide

mercurial