diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-07-27 15:17:53 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-07-27 15:17:53 +0000 |
commit | 02350e4557b3f5ba3cb49d78239a9e696a159290 (patch) | |
tree | b9c3fb6c9d19fb816fad66d3f4f463303e65b972 /installclasses | |
parent | c1af5b166f015134ec5afe32be6cc4b88274d6b9 (diff) | |
download | anaconda-02350e4557b3f5ba3cb49d78239a9e696a159290.tar.gz anaconda-02350e4557b3f5ba3cb49d78239a9e696a159290.tar.xz anaconda-02350e4557b3f5ba3cb49d78239a9e696a159290.zip |
2006-07-27 Jeremy Katz <katzj@redhat.com>
* installclasses/rhel.py (InstallClass.__init__): Fix for changed
base repopath
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/rhel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installclasses/rhel.py b/installclasses/rhel.py index cfc2e2b73..ff822f2f7 100644 --- a/installclasses/rhel.py +++ b/installclasses/rhel.py @@ -66,5 +66,5 @@ class InstallClass(BaseInstallClass): def __init__(self, expert): BaseInstallClass.__init__(self, expert) - self.repopaths = { "base": "%s" %(productPath,) } + self.repopaths = { "base": "" } self.regkey = None |