summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-06-12 16:49:46 +0000
committerMike Fulbright <msf@redhat.com>2003-06-12 16:49:46 +0000
commit4698da2ddbc60480e9f7db9f522417e20478ddde (patch)
tree151f9527daed38364718406585a12664eed6d424 /image.py
parentd1aa5609c1845ad8c7bbd123e6e1e7197171719a (diff)
downloadanaconda-4698da2ddbc60480e9f7db9f522417e20478ddde.tar.gz
anaconda-4698da2ddbc60480e9f7db9f522417e20478ddde.tar.xz
anaconda-4698da2ddbc60480e9f7db9f522417e20478ddde.zip
fix for bug 97151
Diffstat (limited to 'image.py')
-rw-r--r--image.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/image.py b/image.py
index 68137d527..1a5d31d51 100644
--- a/image.py
+++ b/image.py
@@ -421,6 +421,9 @@ class NfsIsoInstallMethod(NfsInstallMethod):
# Make sure all of the correct CD images are available
missing_images = []
for h in hl.values():
+ if h[1000002] is None:
+ continue
+
if not self.discImages.has_key(h[1000002]):
if h[1000002] not in missing_images:
missing_images.append(h[1000002])