summaryrefslogtreecommitdiffstats
path: root/py/mock/plugins
diff options
context:
space:
mode:
authorMichael E Brown <michael_e_brown@dell.com>2007-12-18 14:21:46 -0600
committerMichael E Brown <michael_e_brown@dell.com>2007-12-18 14:21:46 -0600
commit012a5f92f24d196337f120e2c0cc1f0483089928 (patch)
tree6c7fe239f1275f80a562c4f3376b0387cd4f2d90 /py/mock/plugins
parent0f90b968f36a9d945b77ed65bea93e764c077cb6 (diff)
downloadmock-012a5f92f24d196337f120e2c0cc1f0483089928.tar.gz
mock-012a5f92f24d196337f120e2c0cc1f0483089928.tar.xz
mock-012a5f92f24d196337f120e2c0cc1f0483089928.zip
fixup typo: makeChrootPath is a method on self.rootObj.
Diffstat (limited to 'py/mock/plugins')
-rw-r--r--py/mock/plugins/tmpfs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/py/mock/plugins/tmpfs.py b/py/mock/plugins/tmpfs.py
index 10cce33..91762f4 100644
--- a/py/mock/plugins/tmpfs.py
+++ b/py/mock/plugins/tmpfs.py
@@ -28,6 +28,7 @@ class Tmpfs(object):
decorate(traceLog())
def _tmpfsPreInitHook(self):
- mountCmd = "mount -n -t tmpfs mock_chroot_tmpfs %s" % self.makeChrootPath()
+ getLog().info("mounting tmpfs.")
+ mountCmd = "mount -n -t tmpfs mock_chroot_tmpfs %s" % self.rootObj.makeChrootPath()
mock.util.do(mountCmd)