summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael E Brown <michael_e_brown@dell.com>2008-01-09 10:29:40 -0600
committerMichael E Brown <michael_e_brown@dell.com>2008-01-09 10:29:40 -0600
commitb5a372a5b2a682553a28161a9a5e1a6c9510f927 (patch)
treecff42865180a8f77c4d8414ea76ace28c8cc0643
parent89fae160c04d3a84d3aa833a8a33fd39b7519dd1 (diff)
downloadmock-b5a372a5b2a682553a28161a9a5e1a6c9510f927.tar.gz
mock-b5a372a5b2a682553a28161a9a5e1a6c9510f927.tar.xz
mock-b5a372a5b2a682553a28161a9a5e1a6c9510f927.zip
clarify info message to make it obvious that root cache is being unpacked.
-rw-r--r--py/mock/plugins/root_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mock/plugins/root_cache.py b/py/mock/plugins/root_cache.py
index 6e9c60e..bfcec31 100644
--- a/py/mock/plugins/root_cache.py
+++ b/py/mock/plugins/root_cache.py
@@ -72,7 +72,7 @@ class RootCache(object):
# optimization: dont unpack root cache if chroot was not cleaned
if os.path.exists(self.rootCacheFile) and self.rootObj.chrootWasCleaned:
- self.state("unpacking cache")
+ self.state("unpacking root cache")
self._rootCacheLock()
mock.util.do("tar xzf %s -C %s" % (self.rootCacheFile, self.rootObj.makeChrootPath()))
self._rootCacheUnlock()