Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3009
bf5ae5d7477d
child 3060
5883ce99ee12
diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py
--- a/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -17,7 +17,8 @@
 
 class SvnRevisionSelectionDialog(QDialog, Ui_SvnRevisionSelectionDialog):
     """
-    Class implementing a dialog to enter the revisions for the svn diff command.
+    Class implementing a dialog to enter the revisions for the svn diff
+    command.
     """
     def __init__(self, parent=None):
         """
@@ -65,7 +66,8 @@
             return numberSpinBox.value()
         elif dateButton.isChecked():
             return "{{{0}}}".format(
-                QDateTime(dateEdit.date(), timeEdit.time()).toString(Qt.ISODate))
+                QDateTime(dateEdit.date(), timeEdit.time())
+                    .toString(Qt.ISODate))
         elif headButton.isChecked():
             return "HEAD"
         elif workingButton.isChecked():

eric ide

mercurial