Fixed an issue in the Subversion (svn) log browser.

Mon, 30 May 2011 17:45:42 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 30 May 2011 17:45:42 +0200
changeset 1080
dfd96566f584
parent 1079
f05ca3490bd1
child 1082
8387830c1089

Fixed an issue in the Subversion (svn) log browser.

Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py	Mon May 30 16:36:24 2011 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py	Mon May 30 17:45:42 2011 +0200
@@ -297,8 +297,6 @@
         """
         Private method to process the buffered output of the svn log command.
         """
-        ioEncoding = Preferences.getSystem("IOEncoding")
-        
         noEntries = 0
         log = {"message": []}
         changedPaths = []
@@ -316,20 +314,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": "",
                 })

eric ide

mercurial