diff options
| author | Michael E Brown <michael_e_brown@dell.com> | 2008-01-09 10:29:40 -0600 |
|---|---|---|
| committer | Michael E Brown <michael_e_brown@dell.com> | 2008-01-09 10:29:40 -0600 |
| commit | b5a372a5b2a682553a28161a9a5e1a6c9510f927 (patch) | |
| tree | cff42865180a8f77c4d8414ea76ace28c8cc0643 /py/mock/plugins | |
| parent | 89fae160c04d3a84d3aa833a8a33fd39b7519dd1 (diff) | |
| download | mock-b5a372a5b2a682553a28161a9a5e1a6c9510f927.tar.gz mock-b5a372a5b2a682553a28161a9a5e1a6c9510f927.tar.xz mock-b5a372a5b2a682553a28161a9a5e1a6c9510f927.zip | |
clarify info message to make it obvious that root cache is being unpacked.
Diffstat (limited to 'py/mock/plugins')
| -rw-r--r-- | py/mock/plugins/root_cache.py | 2 |
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() |
