summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-05-02 19:09:54 +0000
committerChris Lumens <clumens@redhat.com>2005-05-02 19:09:54 +0000
commitac1a9142a9af9c7d0aa4d8079c791e99e5f9f3fa (patch)
tree0ea8d19e2da9b626ef8297a800b8f72e2ec133ab
parenta2f33df41f579d8e7dafabb66e76b7e7868db816 (diff)
downloadanaconda-ac1a9142a9af9c7d0aa4d8079c791e99e5f9f3fa.tar.gz
anaconda-ac1a9142a9af9c7d0aa4d8079c791e99e5f9f3fa.tar.xz
anaconda-ac1a9142a9af9c7d0aa4d8079c791e99e5f9f3fa.zip
Fix parameter passing so mounted ISO image installs work again, too.
-rw-r--r--ChangeLog5
-rw-r--r--image.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ecb2b7085..33f7a0d88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-02 Chris Lumens <clumens@redhat.com>
+
+ * image.py (NfsIsoInstallMethod.__init__): Fix parameter passing so
+ mounted ISO image installs work again, too.
+
2005-04-29 Jeremy Katz <katzj@redhat.com>
* image.py (CdromInstallMethod.getRPMFilename): Beep when asking
diff --git a/image.py b/image.py
index 617f1704b..b61a43a6e 100644
--- a/image.py
+++ b/image.py
@@ -579,7 +579,7 @@ class NfsIsoInstallMethod(NfsInstallMethod):
# easiest to just mount it again so that we can treat all of the
# images the same way -- we use loop3 for everything
- self.discImages = findIsoImages(tree, messageWindow)
+ self.discImages = findIsoImages(tree, self.messageWindow)
self.mountImage(1)
ImageInstallMethod.__init__(self, self.mntPoint, rootPath, intf)