diff options
author | Matt Wilson <msw@redhat.com> | 2000-01-18 21:49:22 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-01-18 21:49:22 +0000 |
commit | 5f3f0f659b28b6dccedf32cd7fa7739e9c27d945 (patch) | |
tree | 5557760496ffe4887c99a7350c63fe536394110f /harddrive.py | |
parent | bdc0b332fc4c950db6a41e7a42fe27da23bfd931 (diff) | |
download | anaconda-5f3f0f659b28b6dccedf32cd7fa7739e9c27d945.tar.gz anaconda-5f3f0f659b28b6dccedf32cd7fa7739e9c27d945.tar.xz anaconda-5f3f0f659b28b6dccedf32cd7fa7739e9c27d945.zip |
changes from dist by ewt
Diffstat (limited to 'harddrive.py')
-rw-r--r-- | harddrive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/harddrive.py b/harddrive.py index 24458f94b..a213e2be5 100644 --- a/harddrive.py +++ b/harddrive.py @@ -45,7 +45,7 @@ class InstallMethod: def targetFstab(self, fstab): self.isMounted = 0 - for (mntpoint, device, fsystem, reformat, size) in self.mountList(): + for (mntpoint, device, fsystem, reformat, size) in fstab.mountList(): if (device == self.device): self.isMounted = 1 self.tree = "/mnt/sysimage" + mntpoint + "/" + self.path |