summaryrefslogtreecommitdiff
path: root/morphlib/localartifactcache.py
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-05-14 16:03:25 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-05-14 16:03:25 +0000
commit090ee65ba03ce50d0ec5dcd41ac77b377779c6ba (patch)
treedf8467348fbce7cd16afed78021d295d9bd363bf /morphlib/localartifactcache.py
parent949788092824768dc5ffd517073b5b94172869ee (diff)
parentff04f9c2523c9a5d1e55481a43048b5728dafbe4 (diff)
downloadmorph-090ee65ba03ce50d0ec5dcd41ac77b377779c6ba.tar.gz
Merge branch 'baserock/richardipsum/build-log-on-stdout-tee2'
Reviewed by: Lars Wirzenius Sam Thursfield Daniel Silverstone
Diffstat (limited to 'morphlib/localartifactcache.py')
-rw-r--r--morphlib/localartifactcache.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/morphlib/localartifactcache.py b/morphlib/localartifactcache.py
index 341bbb56..4c7f7832 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)