--- 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()