From f24fab69d4cf07c5dfb55a62558505ea206dcb8c Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 14 Aug 2008 15:31:04 -0400 Subject: Expert mode was disabled in 2004. Remove it now. --- installclass.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'installclass.py') diff --git a/installclass.py b/installclass.py index 029900535..b99a091e7 100644 --- a/installclass.py +++ b/installclass.py @@ -214,7 +214,7 @@ class BaseInstallClass(object): anaconda.id.reset() anaconda.id.instClass = self - def __init__(self, expert): + def __init__(self): pass allClasses = [] @@ -340,6 +340,6 @@ baseclass = getBaseInstallClass() # we need to be able to differentiate between this and custom class DefaultInstall(baseclass): - def __init__(self, expert): - BaseInstallClass.__init__(self, expert) + def __init__(self): + BaseInstallClass.__init__(self) -- cgit