summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/fedora.py4
-rw-r--r--installclasses/rhel.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/installclasses/fedora.py b/installclasses/fedora.py
index c1923a47a..bbcff8d92 100644
--- a/installclasses/fedora.py
+++ b/installclasses/fedora.py
@@ -75,5 +75,5 @@ class InstallClass(BaseInstallClass):
else:
return yuminstall.YumBackend
- def __init__(self, expert):
- BaseInstallClass.__init__(self, expert)
+ def __init__(self):
+ BaseInstallClass.__init__(self)
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index 11467988d..668e9cb53 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -177,8 +177,8 @@ class InstallClass(BaseInstallClass):
def getBackend(self):
return yuminstall.YumBackend
- def __init__(self, expert):
- BaseInstallClass.__init__(self, expert)
+ def __init__(self):
+ BaseInstallClass.__init__(self)
self.repopaths = { "base": "%s" %(productPath,) }