summaryrefslogtreecommitdiff
path: root/taskflow/flow.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-06-13 16:32:31 +0000
committerGerrit Code Review <review@openstack.org>2022-06-13 16:32:31 +0000
commit6dfc18013a2570c839828d6d879a9ab6a4964d91 (patch)
treef95964738d5d8148ac17c5b498548805a23d54d8 /taskflow/flow.py
parentc04efe3d7f0397694096575eab33c1f95edcf2f5 (diff)
parent2521e3ee00d91d4002b751ecea06906fdf1c9b0e (diff)
downloadtaskflow-5.0.0.tar.gz
Merge "Quote string representations"5.0.0
Diffstat (limited to 'taskflow/flow.py')
-rw-r--r--taskflow/flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/flow.py b/taskflow/flow.py
index 8fac647..1a138ff 100644
--- a/taskflow/flow.py
+++ b/taskflow/flow.py
@@ -116,7 +116,7 @@ class Flow(object, metaclass=abc.ABCMeta):
cls_name = reflection.get_class_name(self)
if cls_name.startswith(_CHOP_PAT):
cls_name = cls_name[_CHOP_PAT_LEN:]
- return "%s: %s(len=%d)" % (cls_name, self.name, len(self))
+ return '"%s: %s(len=%d)"' % (cls_name, self.name, len(self))
@property
def provides(self):