--- a/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardServer.py Thu Oct 10 19:03:45 2013 +0200 +++ b/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardServer.py Thu Oct 10 19:24:20 2013 +0200 @@ -124,14 +124,14 @@ except ImportError: responseDict["available"] = False elif command == "validate": - valid, error, errorOffset = rxValidate(commandDict["regexp"], - commandDict["options"]) + valid, error, errorOffset = rxValidate( + commandDict["regexp"], commandDict["options"]) responseDict["valid"] = valid responseDict["errorMessage"] = error responseDict["errorOffset"] = errorOffset elif command == "execute": - valid, error, errorOffset = rxValidate(commandDict["regexp"], - commandDict["options"]) + valid, error, errorOffset = rxValidate( + commandDict["regexp"], commandDict["options"]) if not valid: responseDict["valid"] = valid responseDict["errorMessage"] = error