From d8c878f4c17a1c77008fabe42d1874051a10c366 Mon Sep 17 00:00:00 2001 From: Kuo-tung Kao Date: Tue, 4 Oct 2016 17:21:44 +0800 Subject: [PATCH] missing action_class in sample code missing action_class in sample code in wrokflow.rst. Change-Id: I56e412e9f7822366795748f6b73442beb177c5ea --- doc/source/topics/workflows.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/source/topics/workflows.rst b/doc/source/topics/workflows.rst index 6b28deacf..fe6bf661e 100644 --- a/doc/source/topics/workflows.rst +++ b/doc/source/topics/workflows.rst @@ -92,6 +92,7 @@ urls, views, workflows and templates: # data and the steps needs to be ordered properly. class UpdateResources(workflows.Step): + action_class = ResourcesAction # This passes data from Workflow context to action methods # (handle, clean). Workflow context consists of URL data and data # contributed by other steps.