--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sun Feb 09 15:11:14 2014 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sun Feb 09 15:51:14 2014 +0100 @@ -708,7 +708,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: @@ -731,7 +732,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: