diff --git a/platypush/utils/reflection/_parser.py b/platypush/utils/reflection/_parser.py index 7a1ee01ebc..fcf5972204 100644 --- a/platypush/utils/reflection/_parser.py +++ b/platypush/utils/reflection/_parser.py @@ -99,7 +99,7 @@ class DocstringParser: _param_doc_re = re.compile(r"^:param\s+(?P[\w_]+):\s+(?P.*)$") _type_doc_re = re.compile(r"^:type\s+[\w_]+:.*$") _return_doc_re = re.compile(r"^:return:\s+(?P.*)$") - _default_docstring = re.compile(r"^\s*Initialize self\. See help.*$") + _default_docstring = re.compile(r"^\s*Initialize self\.\s*See help.*$") def __init__( self,