diff options
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/personal_desktop.py | 2 | ||||
-rw-r--r-- | installclasses/server.py | 2 | ||||
-rw-r--r-- | installclasses/workstation.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/installclasses/personal_desktop.py b/installclasses/personal_desktop.py index cd07a3818..71d401d91 100644 --- a/installclasses/personal_desktop.py +++ b/installclasses/personal_desktop.py @@ -25,7 +25,7 @@ class InstallClass(BaseInstallClass): dispatch.skipStep("desktopchoice", skip = 0) dispatch.skipStep("package-selection", skip = 1) - def setGroupSelection(self, comps): + def setGroupSelection(self, comps, intf): BaseInstallClass.__init__(self, comps) for comp in comps.comps: diff --git a/installclasses/server.py b/installclasses/server.py index dca925788..f52562030 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -22,7 +22,7 @@ class InstallClass(BaseInstallClass): BaseInstallClass.setSteps(self, dispatch); dispatch.skipStep("authentication") - def setGroupSelection(self, comps): + def setGroupSelection(self, comps, intf): BaseInstallClass.__init__(self, comps) for comp in comps.comps: diff --git a/installclasses/workstation.py b/installclasses/workstation.py index f3d86c4dc..682a9569c 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -12,8 +12,8 @@ class InstallClass(personal_desktop.InstallClass): sortPriority = 2 - def setGroupSelection(self, comps): - personal_desktop.InstallClass.setGroupSelection(self, comps) + def setGroupSelection(self, comps, intf): + personal_desktop.InstallClass.setGroupSelection(self, comps, intf) comps["Emacs"].select() comps["GNOME Software Development"].select() comps["X Software Development"].select() |