Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py

changeset 945
8cd4d08fa9f6
parent 791
9ec2ac20e54e
child 1112
8a7d1b9d18db
diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py
--- a/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py	Fri Mar 11 08:55:14 2011 +0100
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py	Fri Mar 11 16:51:57 2011 +0100
@@ -12,11 +12,12 @@
 
 from .Ui_SvnPropDelDialog import Ui_SvnPropDelDialog
 
+
 class SvnPropDelDialog(QDialog, Ui_SvnPropDelDialog):
     """
     Class implementing a dialog to enter the data for a new property.
     """
-    def __init__(self, recursive, parent = None):
+    def __init__(self, recursive, parent=None):
         """
         Constructor
         
@@ -43,9 +44,9 @@
         """
         Public slot used to retrieve the data entered into the dialog.
         
-        @return tuple of two values giving the property name and a flag 
+        @return tuple of two values giving the property name and a flag
             indicating, that this property should be applied recursively.
             (string, boolean)
         """
-        return (self.propNameEdit.text(), 
+        return (self.propNameEdit.text(),
                 self.recurseCheckBox.isChecked())

eric ide

mercurial