summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-03-16 14:05:57 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-03-16 14:05:57 +0000
commit093bdfa2b2678bdb5c7d949d819b082827198377 (patch)
tree5be79fff954cb88d19f560b52e37acf710e703ce
parente763aa20569578bdd95fb2a97c16fa3d6e4d9834 (diff)
downloadmorph-093bdfa2b2678bdb5c7d949d819b082827198377.tar.gz
Fix call to status() in commit 364455436aded34ce6f843dfa68a32c14aaf01ea
I was meant to do this at merge time but didn't.
-rw-r--r--morphlib/sourceresolver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/sourceresolver.py b/morphlib/sourceresolver.py
index bdbf30b8..fb8642aa 100644
--- a/morphlib/sourceresolver.py
+++ b/morphlib/sourceresolver.py
@@ -453,7 +453,8 @@ class SourceResolver(object):
if chunk_key in self._resolved_buildsystems:
logging.debug('Build system for %s is cached', str(chunk_key))
- self.status(msg='Build system for %s is cached' % str(chunk_key),
+ self.status(msg='Build system for %(chunk)s is cached',
+ chunk=str(chunk_key),
chatty=True)
buildsystem = self._resolved_buildsystems[chunk_key]