From e2d03385eb0738046b87f916a4d11e8040280108 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 23 Sep 2013 14:37:25 +0000 Subject: Fix the graphing_plugin so it actually works --- morphlib/plugins/graphing_plugin.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'morphlib/plugins') diff --git a/morphlib/plugins/graphing_plugin.py b/morphlib/plugins/graphing_plugin.py index b57a3f3e..57166e51 100644 --- a/morphlib/plugins/graphing_plugin.py +++ b/morphlib/plugins/graphing_plugin.py @@ -65,9 +65,8 @@ class GraphingPlugin(cliapp.Plugin): '%(repo_name)s %(ref)s %(filename)s', repo_name=repo_name, ref=ref, filename=filename) builder = morphlib.buildcommand.BuildCommand(self.app) - srcpool = build_command.create_source_pool(repo_name, ref, - filename) - root_artifact = build_command.resolve_artifacts(srcpool) + srcpool = builder.create_source_pool(repo_name, ref, filename) + root_artifact = builder.resolve_artifacts(srcpool) basename, ext = os.path.splitext(filename) dot_filename = basename + '.gv' -- cgit v1.2.1