summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-13 02:33:18 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-13 02:33:18 +0000
commit3621f4b0966e98523f0a4e06f33885115ebe98f5 (patch)
tree16bcc71362a68f099f45ee190513e99f137c6ff9 /rescue.py
parentd542b7e04f56c537a78b703c3f05e15e9c33b5e9 (diff)
downloadanaconda-3621f4b0966e98523f0a4e06f33885115ebe98f5.tar.gz
anaconda-3621f4b0966e98523f0a4e06f33885115ebe98f5.tar.xz
anaconda-3621f4b0966e98523f0a4e06f33885115ebe98f5.zip
use os.chroot now
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 9a94a65dc..7643bb16a 100644
--- a/rescue.py
+++ b/rescue.py
@@ -44,7 +44,7 @@ class RescueInterface:
def makeMtab(instPath):
child = os.fork()
if (not child):
- isys.chroot(instPath)
+ os.chroot(instPath)
f = open("/proc/mounts", "r")
lines = f.readlines()
f.close()