diff -r 0a02c433f52d -r 5883ce99ee12 Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py --- a/Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py Fri Nov 01 15:48:48 2013 +0100 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py Sun Nov 03 15:58:22 2013 +0100 @@ -236,8 +236,8 @@ while self.process.canReadLine(): line = str(self.process.readLine(), - Preferences.getSystem("IOEncoding"), - 'replace') + Preferences.getSystem("IOEncoding"), + 'replace') self.buf.append(line) if self.rx_rev.exactMatch(line): ver = self.rx_rev.cap(1) @@ -258,8 +258,8 @@ if self.process is not None: self.errorGroup.show() s = str(self.process.readAllStandardError(), - Preferences.getSystem("IOEncoding"), - 'replace') + Preferences.getSystem("IOEncoding"), + 'replace') self.errors.insertPlainText(s) self.errors.ensureCursorVisible()