Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py

changeset 3268
8bfa66a9138a
parent 3265
972d6be9dde7
child 3273
075758282fdb
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py	Sun Feb 09 15:10:53 2014 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py	Sun Feb 09 16:01:19 2014 +0100
@@ -727,7 +727,8 @@
                 self.__showError(err)
             elif self.commandMode != "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)
                 self.buf = out.splitlines(True)
                 if err:
@@ -750,7 +751,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