From 78916625575d31fdb6776089cd57e99d6649a0e6 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Tue, 10 Feb 2015 14:02:24 +0000 Subject: Fix to source.files() --- morphlib/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1