summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-02-04 22:51:34 +0000
committerMike Fulbright <msf@redhat.com>2003-02-04 22:51:34 +0000
commit1b20c4465de7669bb40c22fa3a54931346708df4 (patch)
tree7fb80c8fc1c82cd3f6329dcdb052698bee0f5094 /image.py
parent68cdf287e742561c182a4b59928d37092ac1fbf8 (diff)
downloadanaconda-1b20c4465de7669bb40c22fa3a54931346708df4.tar.gz
anaconda-1b20c4465de7669bb40c22fa3a54931346708df4.tar.xz
anaconda-1b20c4465de7669bb40c22fa3a54931346708df4.zip
make note of a design flaw
Diffstat (limited to 'image.py')
-rw-r--r--image.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/image.py b/image.py
index 6ebf6fd37..1dd862748 100644
--- a/image.py
+++ b/image.py
@@ -1,7 +1,7 @@
#
# image.py - Install method for disk image installs (CD & NFS)
#
-# Copyright 1999-2002 Red Hat, Inc.
+# Copyright 1999-2003 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
@@ -30,6 +30,10 @@ class ImageInstallMethod(InstallMethod):
def readCompsViaMethod(self, hdlist):
fname = self.findBestFileMatch(self.tree, 'comps.xml')
+ #
+ # XXX - we dont handle case where file wasnt found
+ # instead we fail down in ComponentSet!!!
+ #
return ComponentSet(fname, hdlist)
def getFilename(self, h, timer):