From a4c366adfd1bc04bc574c88d71455d1005418dab Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 3 Aug 2010 08:32:07 -0400 Subject: [PATCH] Oops. Fix "'." -> ".'" in dependency warning message. --- hooke/plugin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooke/plugin/__init__.py b/hooke/plugin/__init__.py index 052284d..54cce66 100644 --- a/hooke/plugin/__init__.py +++ b/hooke/plugin/__init__.py @@ -179,7 +179,7 @@ def load_graph(graph, config, include_section): if enabled.get(dependency.data.name, None) != True: log = logging.getLogger('hooke') log.warn( - 'could not setup plugin %s. unsatisfied dependency on %s'. + 'could not setup plugin %s. unsatisfied dependency on %s.' % (item.name, dependency.data.name)) enabled[item.name] = False continue -- 2.26.2