summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-24 16:19:20 +0000
committerMatt Wilson <msw@redhat.com>1999-09-24 16:19:20 +0000
commit769c9dbf446264d089525dd20fa98e32c5f2637d (patch)
tree91a8216b2bb37ad5ce95f313cb64075e086e9b67 /kickstart.py
parentd62f997277de0f08c9ee7cfc674a33424f894eef (diff)
downloadanaconda-769c9dbf446264d089525dd20fa98e32c5f2637d.tar.gz
anaconda-769c9dbf446264d089525dd20fa98e32c5f2637d.tar.xz
anaconda-769c9dbf446264d089525dd20fa98e32c5f2637d.zip
screen blanking, don't kill the splash so early, package selection in kickstart
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kickstart.py b/kickstart.py
index 99145a63b..9dce7eb04 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -3,6 +3,7 @@ from installclass import InstallClass
from installclass import FSEDIT_CLEAR_LINUX
from installclass import FSEDIT_CLEAR_ALL
import sys
+import string
class Kickstart(InstallClass):
@@ -279,8 +280,7 @@ class Kickstart(InstallClass):
where = "post"
elif n[0] == '@':
n = n[1:]
- while n[0] == ' ':
- n = n[1:]
+ n = string.strip (n)
groups.append(n)
else:
packages.append(n)