Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py

changeset 3037
a417a0670a36
parent 3020
542e97d4ecb3
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py	Sat Oct 19 15:15:50 2013 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py	Sat Oct 19 16:14:07 2013 +0200
@@ -230,8 +230,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)
@@ -252,8 +252,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()
         

eric ide

mercurial