diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-07 22:45:26 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-07 22:45:26 +0000 |
commit | 964b12982b2078ee53bfa45026125703a2a31b7d (patch) | |
tree | 58be92c6592d95ea315f9c4a63153a6081661f0c /urlinstall.py | |
parent | 0e6195f473604ee66f2df999e0432738319293e9 (diff) | |
download | anaconda-964b12982b2078ee53bfa45026125703a2a31b7d.tar.gz anaconda-964b12982b2078ee53bfa45026125703a2a31b7d.tar.xz anaconda-964b12982b2078ee53bfa45026125703a2a31b7d.zip |
fixes for alpha, fstab reading
Diffstat (limited to 'urlinstall.py')
-rw-r--r-- | urlinstall.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/urlinstall.py b/urlinstall.py index b75f0b193..0799b279d 100644 --- a/urlinstall.py +++ b/urlinstall.py @@ -20,9 +20,8 @@ FILENAME = 1000000 class InstallMethod: def readComps(self, hdlist): - return ComponentSet('i386', self.baseUrl + - '/RedHat/base/comps', hdlist) - return cs + return ComponentSet(self.baseUrl + '/RedHat/base/comps', + hdlist) def getFilename(self, h): root = "/mnt/sysimage" |