summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-14 12:01:05 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-14 12:01:05 +0000
commitd4888223b54c42bba1debdb7277682b1e45855de (patch)
tree3d0ec5fc16b1d9d8950f48f1dda6d17ecfce8de7
parent2a019b5fee65a738bdd38717b0b84eea638a776d (diff)
downloadmorph-d4888223b54c42bba1debdb7277682b1e45855de.tar.gz
Fix list-artifacts command
Silly mistake caused this to be broken, and there are no tests for this command inside the morph.git source tree.
-rw-r--r--morphlib/plugins/list_artifacts_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/plugins/list_artifacts_plugin.py b/morphlib/plugins/list_artifacts_plugin.py
index 713473ac..6944cff4 100644
--- a/morphlib/plugins/list_artifacts_plugin.py
+++ b/morphlib/plugins/list_artifacts_plugin.py
@@ -84,7 +84,7 @@ class ListArtifactsPlugin(cliapp.Plugin):
self.app.status(
msg='Creating source pool for %s' % system_filename, chatty=True)
- source_pool = morphlib.SourceResolver.create_source_pool(
+ source_pool = morphlib.sourceresolver.create_source_pool(
self.lrc, self.rrc, repo, ref, system_filename,
update_repos = not self.app.settings['no-git-update'],
status_cb=self.app.status)