diff options
author | Matt Wilson <msw@redhat.com> | 2002-02-04 21:24:35 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-02-04 21:24:35 +0000 |
commit | ea82c230ff50585527573cbee910b8237c2f3647 (patch) | |
tree | 17b7b37a1b8dcff27f463099b224c9dba06e4faa /image.py | |
parent | 7ed47c9c2c0e59cb0615ada0d2a5dc2673fc664f (diff) | |
download | anaconda-ea82c230ff50585527573cbee910b8237c2f3647.tar.gz anaconda-ea82c230ff50585527573cbee910b8237c2f3647.tar.xz anaconda-ea82c230ff50585527573cbee910b8237c2f3647.zip |
removed hardcoding of /mnt/source, parse RELEASE-NOTES.html as html, search for both plain text and HTML RELEASE-NOTES, convert to utf8
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,9 @@ class ImageInstallMethod(InstallMethod): def mergeFullHeaders(self, hdlist): hdlist.mergeFullHeaders(self.tree + "/RedHat/base/hdlist2") + def getSourcePath(self): + return self.tree + def __init__(self, tree): InstallMethod.__init__(self) self.tree = tree |