diff --git a/docs/wiki b/docs/wiki index 1f91df553c..0cd1054524 160000 --- a/docs/wiki +++ b/docs/wiki @@ -1 +1 @@ -Subproject commit 1f91df553c5c5beeffc4745f50b6535cbc76c7a8 +Subproject commit 0cd1054524f80cc635cab7a2c0e67632bbb877b8 diff --git a/platypush/plugins/__init__.py b/platypush/plugins/__init__.py index 0a80819115..e424f67d6d 100644 --- a/platypush/plugins/__init__.py +++ b/platypush/plugins/__init__.py @@ -6,7 +6,6 @@ from platypush.config import Config from platypush.message.response import Response from platypush.utils import get_decorators - def action(f): def _execute_action(*args, **kwargs): output = None @@ -24,6 +23,8 @@ def action(f): return Response(output=output, errors=errors) + # Propagate the docstring + _execute_action.__doc__ = f.__doc__ return _execute_action