summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-02-15 10:58:50 +0000
committerGerrit Code Review <review@openstack.org>2015-02-15 10:58:50 +0000
commit14009d23341e67ebc6031b04a75401521f8daaa2 (patch)
tree488a17ca5ab28a529f96034eb21576dcd452de45
parentd70c04a3c985e704b0174d53367316ebb3234a84 (diff)
parent9ea190d0c38d8572f6ff1e58f59483813f2208dc (diff)
downloadtaskflow-14009d23341e67ebc6031b04a75401521f8daaa2.tar.gz
Merge "Fix log statement"
-rw-r--r--taskflow/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/exceptions.py b/taskflow/exceptions.py
index d4db4e5..b2b4419 100644
--- a/taskflow/exceptions.py
+++ b/taskflow/exceptions.py
@@ -132,7 +132,7 @@ class MissingDependencies(DependencyFailure):
"""
#: Exception message template used when creating an actual message.
- MESSAGE_TPL = ("%(who)s requires %(requirements)s but no other entity"
+ MESSAGE_TPL = ("'%(who)s' requires %(requirements)s but no other entity"
" produces said requirements")
def __init__(self, who, requirements, cause=None):