summaryrefslogtreecommitdiff
path: root/morphlib/plugins/graphing_plugin.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-08-01 12:51:28 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-08-01 13:37:46 +0000
commit2bf9843afba2d4f2a81bb136ec693f7b52803639 (patch)
treedf84ebdfcb8213ac72eaeb6c088100474d559408 /morphlib/plugins/graphing_plugin.py
parent1eecb98389433aecd53f4d1c8fb9a9c2bc008df5 (diff)
downloadmorph-2bf9843afba2d4f2a81bb136ec693f7b52803639.tar.gz
Move BuildCommand from app into its own module
morphlib.app should be for application bringup and providing command line options used by the library code. Any external plugins that refer to morphlib.app.BuildCommand will need fixing.
Diffstat (limited to 'morphlib/plugins/graphing_plugin.py')
-rw-r--r--morphlib/plugins/graphing_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/plugins/graphing_plugin.py b/morphlib/plugins/graphing_plugin.py
index 5e25bd5c..3594e9b9 100644
--- a/morphlib/plugins/graphing_plugin.py
+++ b/morphlib/plugins/graphing_plugin.py
@@ -35,7 +35,7 @@ class GraphingPlugin(cliapp.Plugin):
self.app.status(msg='Creating build order for '
'%(repo_name)s %(ref)s %(filename)s',
repo_name=repo_name, ref=ref, filename=filename)
- builder = morphlib.app.BuildCommand(self.app)
+ builder = morphlib.buildcommand.BuildCommand(self.app)
order = builder.compute_build_order(repo_name, ref, filename)
basename, ext = os.path.splitext(filename)