diff options
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 |