Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py

changeset 3036
30c81c9e88b8
parent 3034
7ce719013078
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py	Sat Oct 19 14:05:26 2013 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py	Sat Oct 19 15:15:50 2013 +0200
@@ -356,19 +356,19 @@
                                     Utilities.html_encode(fileCopies[f]))
                     else:
                         html += self.trUtf8('Added {0}<br />\n')\
-                                .format(Utilities.html_encode(f))
+                            .format(Utilities.html_encode(f))
             
             if entry["files_mods"]:
                 html += '<br />\n'
                 for f in entry["files_mods"].strip().split(", "):
                     html += self.trUtf8('Modified {0}<br />\n')\
-                            .format(Utilities.html_encode(f))
+                        .format(Utilities.html_encode(f))
             
             if entry["file_dels"]:
                 html += '<br />\n'
                 for f in entry["file_dels"].strip().split(", "):
                     html += self.trUtf8('Deleted {0}<br />\n')\
-                            .format(Utilities.html_encode(f))
+                        .format(Utilities.html_encode(f))
             
             html += '</p>{0}<br/>\n'.format(80 * "=")
         
@@ -388,8 +388,8 @@
         
         while self.process.canReadLine():
             s = str(self.process.readLine(),
-                        Preferences.getSystem("IOEncoding"),
-                        'replace')
+                    Preferences.getSystem("IOEncoding"),
+                    'replace')
             self.__processOutputLine(s)
     
     def __processOutputLine(self, line):
@@ -411,8 +411,8 @@
             if key == "change":
                 self.endInitialText = True
             if key in ("change", "branches", "tags", "parents", "user",
-                        "date", "file_copies", "file_adds", "files_mods",
-                        "file_dels", "bookmarks", "phase"):
+                       "date", "file_copies", "file_adds", "files_mods",
+                       "file_dels", "bookmarks", "phase"):
                 self.lastLogEntry[key] = value.strip()
             elif key == "description":
                 self.lastLogEntry[key] = [value.strip()]
@@ -431,8 +431,8 @@
         """
         if self.process is not None:
             s = str(self.process.readAllStandardError(),
-                     Preferences.getSystem("IOEncoding"),
-                     'replace')
+                    Preferences.getSystem("IOEncoding"),
+                    'replace')
             self.__showError(s)
     
     def __showError(self, out):

eric ide

mercurial