summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-04-04 20:11:43 +0000
committerChris Lumens <clumens@redhat.com>2005-04-04 20:11:43 +0000
commit281b466b0a5a474af762214015e905702122871c (patch)
tree9349b2d731223683bdae2dc0551cf48b8e30dbdc
parent4415dff307a1257053f3777094674df598664682 (diff)
downloadanaconda-281b466b0a5a474af762214015e905702122871c.tar.gz
anaconda-281b466b0a5a474af762214015e905702122871c.tar.xz
anaconda-281b466b0a5a474af762214015e905702122871c.zip
Don't try to skip a step that doesn't exist.
-rw-r--r--ChangeLog5
-rw-r--r--kickstart.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ca7d60007..09c730571 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-04-04 Chris Lumens <clumens@redhat.com>
+ * kickstart.py (KickstartBase.doLangSupport): Don't skip a step that
+ doesn't exist.
+
+2005-04-04 Chris Lumens <clumens@redhat.com>
+
* anaconda.spec: Bump version.
* language.py (Language.__init__): Add settings for the 'C' locale to
diff --git a/kickstart.py b/kickstart.py
index ea05af4e1..00b77c7dc 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -594,8 +594,6 @@ class KickstartBase(BaseInstallClass):
self.setLanguageDefault (id, deflang)
self.setLanguageSupport(id, extra)
- self.skipSteps.append("languagesupport")
-
def doKeyboard(self, id, args):
self.setKeyboard(id, args[0])
id.keyboard.beenset = 1