From: W. Trevor King Date: Tue, 3 Aug 2010 12:32:07 +0000 (-0400) Subject: Oops. Fix "'." -> ".'" in dependency warning message. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a4c366adfd1bc04bc574c88d71455d1005418dab;p=hooke.git Oops. Fix "'." -> ".'" in dependency warning message. --- 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