summaryrefslogtreecommitdiff
path: root/morphlib/plugins/graphing_plugin.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-09-23 14:37:25 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-09-23 14:37:25 +0000
commite2d03385eb0738046b87f916a4d11e8040280108 (patch)
tree05bf29de98caaece040c5938e871bff4bcd7d0cf /morphlib/plugins/graphing_plugin.py
parentad1fbb06ef2d2c8600210facbc62b19c343e2684 (diff)
downloadmorph-e2d03385eb0738046b87f916a4d11e8040280108.tar.gz
Fix the graphing_plugin so it actually works
Diffstat (limited to 'morphlib/plugins/graphing_plugin.py')
-rw-r--r--morphlib/plugins/graphing_plugin.py5
1 files changed, 2 insertions, 3 deletions
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'