summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-10 14:02:24 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-11 16:04:44 +0000
commit78916625575d31fdb6776089cd57e99d6649a0e6 (patch)
tree7463810c8f0d2b89c510c8076a8b2fb1ec52f88e
parent1e03a84261184efae8d3196784dc0241eae6199c (diff)
downloadmorph-78916625575d31fdb6776089cd57e99d6649a0e6.tar.gz
Fix to source.files()
-rw-r--r--morphlib/source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/source.py b/morphlib/source.py
index 53563a43..6b809aa3 100644
--- a/morphlib/source.py
+++ b/morphlib/source.py
@@ -90,7 +90,7 @@ class Source(object):
for artifact in self.artifacts.values():
files.add(artifact.basename())
if self.morphology.needs_artifact_metadata_cached:
- files.add(artifact.metadata_basename())
+ files.add(artifact.metadata_basename('meta'))
return files