diff -r 1b188056eaec -r 939965310137 Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py --- a/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py Mon May 30 16:36:24 2011 +0200 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py Mon May 30 17:46:49 2011 +0200 @@ -296,8 +296,6 @@ """ Private method to process the buffered output of the svn log command. """ - ioEncoding = Preferences.getSystem("IOEncoding") - noEntries = 0 log = {"message" : []} changedPaths = [] @@ -315,20 +313,20 @@ elif self.rx_flags1.exactMatch(s): changedPaths.append({\ "action" : - str(self.rx_flags1.cap(1).strip(), ioEncoding, 'replace'), + self.rx_flags1.cap(1).strip(), "path" : - str(self.rx_flags1.cap(2).strip(), ioEncoding, 'replace'), + self.rx_flags1.cap(2).strip(), "copyfrom_path" : - str(self.rx_flags1.cap(3).strip(), ioEncoding, 'replace'), + self.rx_flags1.cap(3).strip(), "copyfrom_revision" : - str(self.rx_flags1.cap(4).strip(), ioEncoding, 'replace'), + self.rx_flags1.cap(4).strip(), }) elif self.rx_flags2.exactMatch(s): changedPaths.append({\ "action" : - str(self.rx_flags2.cap(1).strip(), ioEncoding, 'replace'), + self.rx_flags2.cap(1).strip(), "path" : - str(self.rx_flags2.cap(2).strip(), ioEncoding, 'replace'), + self.rx_flags2.cap(2).strip(), "copyfrom_path" : "", "copyfrom_revision" : "", }) @@ -642,4 +640,4 @@ self.intercept = False evt.accept() return - QWidget.keyPressEvent(self, evt) \ No newline at end of file + QWidget.keyPressEvent(self, evt)