diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-08-16 19:27:28 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-08-16 19:27:28 +0000 |
commit | 46f9e2fec9fadb570c7def88245bd1dd53e9f7d5 (patch) | |
tree | fd0cb49c3c3ec3fec3a717bd957eed9be6325dde /urlinstall.py | |
parent | fe0a57ad21cae8892615e75deea913530da6fb28 (diff) | |
download | anaconda-46f9e2fec9fadb570c7def88245bd1dd53e9f7d5.tar.gz anaconda-46f9e2fec9fadb570c7def88245bd1dd53e9f7d5.tar.xz anaconda-46f9e2fec9fadb570c7def88245bd1dd53e9f7d5.zip |
make the comps package install on ftp/http installsBefore.MSF.kslvm.growing
Diffstat (limited to 'urlinstall.py')
-rw-r--r-- | urlinstall.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/urlinstall.py b/urlinstall.py index 509482b7f..f64d8cd28 100644 --- a/urlinstall.py +++ b/urlinstall.py @@ -76,13 +76,13 @@ class UrlInstallMethod(InstallMethod): def copyFileToTemp(self, filename): tmppath = self.getTempPath() - if self.multiDics: + if self.multiDiscs: base = "%s/disc1" % (self.pkgUrl,) else: base = self.pkgUrl - fullPath = base + filename + fullPath = base + "/" + filename - file = tmppath + os.path.basename(fullPath) + file = tmppath + "/" + os.path.basename(fullPath) connected = 0 while not connected: |