summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2014-05-28 23:36:36 -0700
committerJoshua Harlow <harlowja@gmail.com>2014-05-28 23:36:50 -0700
commit642ef06b2768c3a416f4026313c3c5215b7414b3 (patch)
treed35aea8e1f9ed698f7e6118c804dd2f79a4dc950
parent55c4267cc0d2cdea3936752085e97106bfb3c968 (diff)
downloadtaskflow-642ef06b2768c3a416f4026313c3c5215b7414b3.tar.gz
Fix docstring list format
Change-Id: Ia79560e965e94e2e4ce18f4667c33ae577b327ed
-rw-r--r--taskflow/retry.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/taskflow/retry.py b/taskflow/retry.py
index b3d435b..fb7330e 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``.
"""