diff --git a/platypush/utils/reflection/_parser.py b/platypush/utils/reflection/_parser.py
index 7a1ee01eb..fcf597220 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<name>[\w_]+):\s+(?P<doc>.*)$")
     _type_doc_re = re.compile(r"^:type\s+[\w_]+:.*$")
     _return_doc_re = re.compile(r"^:return:\s+(?P<doc>.*)$")
-    _default_docstring = re.compile(r"^\s*Initialize self\. See help.*$")
+    _default_docstring = re.compile(r"^\s*Initialize self\.\s*See help.*$")
 
     def __init__(
         self,