summaryrefslogtreecommitdiff
path: root/morphlib/artifact.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/artifact.py')
-rw-r--r--morphlib/artifact.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/artifact.py b/morphlib/artifact.py
index f5c2e8a5..3a438747 100644
--- a/morphlib/artifact.py
+++ b/morphlib/artifact.py
@@ -31,10 +31,10 @@ class Artifact(object):
'''
- def __init__(self, source, name, cache_key):
+ def __init__(self, source, name):
self.source = source
self.name = name
- self.cache_key = cache_key
+ self.cache_key = None
self.dependencies = []
self.dependents = []