From 63f39eb88181b8636ccc352dfa9de18335982a77 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 28 May 2014 23:36:36 -0700 Subject: [PATCH] Fix docstring list format Change-Id: Ia79560e965e94e2e4ce18f4667c33ae577b327ed --- taskflow/retry.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/taskflow/retry.py b/taskflow/retry.py index b3d435b3..fb7330e2 100644 --- a/taskflow/retry.py +++ b/taskflow/retry.py @@ -51,12 +51,13 @@ class Decider(object): this history will be empty). Returns retry action constant: - * 'RETRY' when subflow must be reverted and restarted again (maybe + + * ``RETRY`` when subflow must be reverted and restarted again (maybe with new parameters). - * 'REVERT' when this subflow must be completely reverted and parent + * ``REVERT`` when this subflow must be completely reverted and parent subflow should make a decision about the flow execution. - * 'REVERT_ALL' in a case when the whole flow must be reverted and - marked as FAILURE. + * ``REVERT_ALL`` in a case when the whole flow must be reverted and + marked as ``FAILURE``. """