Fix log statement

Added quotes around flow repr output used in exception.  Since
the name can contain spaces it maybe sometimes confusing to debug
without the quotes.

Change-Id: I469af4758acb41c0d79f2368d21b707e88639047
This commit is contained in:
Manish Godara
2015-02-13 15:48:06 -08:00
parent 72a9c00625
commit 9ea190d0c3

View File

@@ -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):