Plugins/PluginWizardQRegularExpression.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2791
a9577f248f04
parent 3004
c4bf32c791d0
child 3058
0a02c433f52d
diff -r 9986ec0e559a -r 10516539f238 Plugins/PluginWizardQRegularExpression.py
--- a/Plugins/PluginWizardQRegularExpression.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/PluginWizardQRegularExpression.py	Fri Oct 18 23:00:41 2013 +0200
@@ -76,8 +76,8 @@
         self.action.setWhatsThis(self.trUtf8(
             """<b>QRegularExpression Wizard</b>"""
             """<p>This wizard opens a dialog for entering all the parameters"""
-            """ needed to create a QRegularExpression string. The generated code"""
-            """ is inserted at the current cursor position.</p>"""
+            """ needed to create a QRegularExpression string. The generated"""
+            """ code is inserted at the current cursor position.</p>"""
         ))
         self.action.triggered[()].connect(self.__handle)
         
@@ -98,7 +98,8 @@
         @param editor reference to the current editor
         @return the generated code (string)
         """
-        from WizardPlugins.QRegularExpressionWizard.QRegularExpressionWizardDialog import \
+        from WizardPlugins.QRegularExpressionWizard\
+            .QRegularExpressionWizardDialog import \
             QRegularExpressionWizardDialog
         dlg = QRegularExpressionWizardDialog(None, True)
         if dlg.exec_() == QDialog.Accepted:
@@ -114,7 +115,7 @@
         
     def __handle(self):
         """
-        Private method to handle the wizards action
+        Private method to handle the wizards action.
         """
         editor = e5App().getObject("ViewManager").activeWindow()
         

eric ide

mercurial