diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-08-08 18:29:56 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-08-08 18:29:56 +0000 |
commit | 5ebb9cf90a16a5d878fb36ad9639b8f6e4663301 (patch) | |
tree | 5d62126f46dfd412457084fdf574403368653167 /urlinstall.py | |
parent | bc517d138217d1dd568dfb03f9527c6dddc415d5 (diff) | |
download | anaconda-5ebb9cf90a16a5d878fb36ad9639b8f6e4663301.tar.gz anaconda-5ebb9cf90a16a5d878fb36ad9639b8f6e4663301.tar.xz anaconda-5ebb9cf90a16a5d878fb36ad9639b8f6e4663301.zip |
* urlinstall.py (UrlInstallMethod.__init__): Set self.currentMedia
to [] (#201722).
Diffstat (limited to 'urlinstall.py')
-rw-r--r-- | urlinstall.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/urlinstall.py b/urlinstall.py index 340e1c516..a3b006637 100644 --- a/urlinstall.py +++ b/urlinstall.py @@ -172,6 +172,8 @@ class UrlInstallMethod(InstallMethod): self.baseUrl = urlparse.urlunsplit((scheme,netloc,path,query,fragid)) + self.currentMedia = [] + # FIXME: does not work # # self.baseUrl points at the path which contains the 'product' # # directory with the hdlist. |