diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-05 19:26:50 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-05 19:26:50 +0000 |
commit | 46ca42ff18704ef30a240fc160bd9d19975bb4b2 (patch) | |
tree | 3830b719bdd53ce05664965876f2607837d89131 /textw | |
parent | 8627be4a9f06be301d6d229fe19cf1ad4c4f5a73 (diff) | |
download | anaconda-46ca42ff18704ef30a240fc160bd9d19975bb4b2.tar.gz anaconda-46ca42ff18704ef30a240fc160bd9d19975bb4b2.tar.xz anaconda-46ca42ff18704ef30a240fc160bd9d19975bb4b2.zip |
pass fstab into getSiloImages
Diffstat (limited to 'textw')
-rw-r--r-- | textw/silo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/silo.py b/textw/silo.py index a20f930f9..b2c84218d 100644 --- a/textw/silo.py +++ b/textw/silo.py @@ -166,7 +166,7 @@ class SiloImagesWindow: return "%-10s %-25s %-7s %-10s" % ( "/dev/" + device, type, default, label) def __call__(self, screen, todo): - (images, default) = todo.silo.getSiloImages() + (images, default) = todo.silo.getSiloImages(todo.fstab) if not images: return INSTALL_NOOP if todo.skipLilo: return INSTALL_NOOP |