summaryrefslogtreecommitdiff
path: root/morphlib/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/app.py')
-rwxr-xr-xmorphlib/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/app.py b/morphlib/app.py
index 2e118500..ba87914c 100755
--- a/morphlib/app.py
+++ b/morphlib/app.py
@@ -349,7 +349,7 @@ class Morph(cliapp.Application):
if install_chunks:
self.install_artifacts(staging_area, lac, to_install)
del to_install[:]
- for artfact in set(group).difference(set(needed)):
+ for artifact in set(group).difference(set(needed)):
self.msg('Using cached %s' % artifact.name)
wanted = [x for x in group if x in needed]
self.build_group(wanted, builder, lac, staging_area)