--- a/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Sat Oct 19 14:05:26 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Sat Oct 19 15:15:50 2013 +0200 @@ -193,8 +193,8 @@ """ if self.process is not None: s = str(self.process.readAllStandardOutput(), - Preferences.getSystem("IOEncoding"), - 'replace') + Preferences.getSystem("IOEncoding"), + 'replace') self.__appendText(s, False) def __readStderr(self): @@ -205,8 +205,8 @@ """ if self.process is not None: s = str(self.process.readAllStandardError(), - Preferences.getSystem("IOEncoding"), - 'replace') + Preferences.getSystem("IOEncoding"), + 'replace') self.__appendText(s, True) def __appendText(self, txt, error=False):