summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-24 23:39:14 +0000
committerMatt Wilson <msw@redhat.com>1999-09-24 23:39:14 +0000
commit8f325d2da41ebf444eaecadabc0e560b89c8649d (patch)
tree2f9cc52906b1d3b77924217283c66b5605d1bf49
parentf23baa3e5fc78a59e45dbf4d744c63b924f7b7d7 (diff)
downloadanaconda-8f325d2da41ebf444eaecadabc0e560b89c8649d.tar.gz
anaconda-8f325d2da41ebf444eaecadabc0e560b89c8649d.tar.xz
anaconda-8f325d2da41ebf444eaecadabc0e560b89c8649d.zip
fixed some types
-rw-r--r--todo.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/todo.py b/todo.py
index 231e00e21..4daa9e15c 100644
--- a/todo.py
+++ b/todo.py
@@ -1137,10 +1137,12 @@ class ToDo:
todo.timezone = instClass.getTimezoneInfo()
todo.bootdisk = todo.instClass.getMakeBootdisk()
todo.zeroMbr = todo.instClass.zeroMbr
- todo.mounts = todo.instClass.fstab
(where, linear, append) = todo.instClass.getLiloInformation()
todo.liloDevice = where
+ for (mntpoint, (dev, fstype, reformat)) in todo.instClass.fstab:
+ todo.addMount(dev, mntpoint, fstype, reformat)
+
if todo.ddruid:
todo.ddruid = None
todo.mounts = {}