Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py

branch
5_1_x
changeset 1081
939965310137
parent 791
9ec2ac20e54e
child 1084
108c2db52ea4
--- 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)

eric ide

mercurial