--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sun Apr 13 17:56:31 2014 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Thu Apr 17 18:22:56 2014 +0200 @@ -19,6 +19,8 @@ from E5Gui.E5Application import e5App from E5Gui import E5MessageBox +from Globals import isWindowsPlatform + from .Ui_HgLogBrowserDialog import Ui_HgLogBrowserDialog import UI.PixmapCache @@ -85,7 +87,10 @@ else: self.commandMode = "log" self.initialCommandMode = "log" - self.__hgClient = vcs.getClient() + if isWindowsPlatform(): + self.__hgClient = None + else: + self.__hgClient = vcs.getClient() self.__bundle = "" self.__filename = ""