---
morphlib/localartifactcache.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/morphlib/localartifactcache.py b/morphlib/localartifactcache.py
index 341bbb5..4c7f783 100644
--- a/morphlib/localartifactcache.py
+++ b/morphlib/localartifactcache.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2012,2013 Codethink Limited
+# Copyright (C) 2012, 2013, 2014 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -88,6 +88,9 @@ class LocalArtifactCache(object):
os.utime(filename, None)
return open(filename)
+ def get_source_metadata_filename(self, source, cachekey, name):
+ return self._source_metadata_filename(source, cachekey, name)
+
def get_source_metadata(self, source, cachekey, name):
filename = self._source_metadata_filename(source, cachekey, name)
os.utime(filename, None)
--
1.7.10.4