summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kickstart.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index d756b9cee..cb8327046 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -579,7 +579,8 @@ class KickstartBase(BaseInstallClass):
self.skipSteps.append("xcustom")
self.skipSteps.append("handleX11pkgs")
self.skipSteps.append("writexconfig")
- id.xsetup.skipx = 1
+ if id.xsetup is not None:
+ id.xsetup.skipx = 1
def doInteractive(self, id, args):
self.interactive = 1