summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):