From d33313f84e4a77433ee5d3a3ef35f3440f7c34bd Mon Sep 17 00:00:00 2001 From: hyunsikYang Date: Thu, 23 Apr 2020 08:06:11 +0000 Subject: [PATCH] typo of guide 'How to write a Custom Action in mistral' Change-Id: I48f36ad4ed2decc872e7a5ab2e086283d504da89 Related-Bug: #1874391 --- doc/source/developer/extensions/creating_custom_action.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/developer/extensions/creating_custom_action.rst b/doc/source/developer/extensions/creating_custom_action.rst index 23b50c74b..bc9306943 100644 --- a/doc/source/developer/extensions/creating_custom_action.rst +++ b/doc/source/developer/extensions/creating_custom_action.rst @@ -13,7 +13,7 @@ How to write a Custom Action # store the incoming params self.param = param - def run(self): + def run(self, action_ctx=None): # return your results here return {'status': 0}