Merge "typo of guide 'How to write a Custom Action in mistral'"

This commit is contained in:
Zuul 2020-04-24 06:49:52 +00:00 committed by Gerrit Code Review
commit 0d82f77e82
1 changed files with 1 additions and 1 deletions

View File

@ -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}