Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py

changeset 3009
bf5ae5d7477d
parent 2848
15c84f1f745a
child 3020
542e97d4ecb3
child 3057
10516539f238
diff -r 7848489bcb92 -r bf5ae5d7477d Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py
--- a/Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py	Sat Oct 12 15:01:28 2013 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py	Sat Oct 12 17:31:40 2013 +0200
@@ -10,7 +10,8 @@
 import os
 
 from PyQt4.QtCore import QTimer, QByteArray, QProcess, QRegExp, QUrl, pyqtSlot
-from PyQt4.QtGui import QWidget, QLineEdit, QApplication, QTextCursor, QDialogButtonBox
+from PyQt4.QtGui import QWidget, QLineEdit, QApplication, QTextCursor, \
+    QDialogButtonBox
 
 from E5Gui import E5MessageBox
 
@@ -22,7 +23,8 @@
 
 class SvnLogDialog(QWidget, Ui_SvnLogDialog):
     """
-    Class implementing a dialog to show the output of the svn log command process.
+    Class implementing a dialog to show the output of the svn log command
+    process.
     
     The dialog is nonmodal. Clicking a link in the upper text pane shows
     a diff of the versions.
@@ -54,14 +56,16 @@
         
         self.rx_sep = QRegExp('\\-+\\s*')
         self.rx_sep2 = QRegExp('=+\\s*')
-        self.rx_rev = QRegExp('rev ([0-9]+):  ([^|]*) \| ([^|]*) \| ([0-9]+) .*')
+        self.rx_rev = QRegExp(
+            'rev ([0-9]+):  ([^|]*) \| ([^|]*) \| ([0-9]+) .*')
         # "rev" followed by one or more decimals followed by a colon followed
-        # anything up to " | " (twice) followed by one or more decimals followed
-        # by anything
-        self.rx_rev2 = QRegExp('r([0-9]+) \| ([^|]*) \| ([^|]*) \| ([0-9]+) .*')
+        # anything up to " | " (twice) followed by one or more decimals
+        # followed by anything
+        self.rx_rev2 = QRegExp(
+            'r([0-9]+) \| ([^|]*) \| ([^|]*) \| ([0-9]+) .*')
         # "r" followed by one or more decimals followed by " | " followed
-        # anything up to " | " (twice) followed by one or more decimals followed
-        # by anything
+        # anything up to " | " (twice) followed by one or more decimals
+        # followed by anything
         self.rx_flags = QRegExp('   ([ADM])( .*)\\s*')
         # three blanks followed by A or D or M
         self.rx_changed = QRegExp('Changed .*\\s*')

eric ide

mercurial