diff -r b8fee972444b -r 972d6be9dde7 Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py --- a/Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py Sat Feb 08 20:09:58 2014 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py Sun Feb 09 15:10:53 2014 +0100 @@ -180,7 +180,8 @@ if err: self.__showError(err) elif self.mode != "incoming" or \ - os.path.exists(self.vcs.bundleFile): + (self.vcs.bundleFile and + os.path.exists(self.vcs.bundleFile)): out, err = self.__hgClient.runcommand(args) if err: self.__showError(err) @@ -203,7 +204,7 @@ if procStarted: process.waitForFinished(30000) - if os.path.exists(self.vcs.bundleFile): + if self.vcs.bundleFile and os.path.exists(self.vcs.bundleFile): self.process.start('hg', args) procStarted = self.process.waitForStarted(5000) if not procStarted: