summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-20 23:47:26 +0000
committerMatt Wilson <msw@redhat.com>1999-08-20 23:47:26 +0000
commit78261bb43b883ef6a0d7b993e5043419c603f10c (patch)
tree3441f2ec53728ecc32b44835bded34c262e1b5f8 /lilo.py
parentefe6ad6ccac4cbc1514281846edc42a22ec354ae (diff)
downloadanaconda-78261bb43b883ef6a0d7b993e5043419c603f10c.tar.gz
anaconda-78261bb43b883ef6a0d7b993e5043419c603f10c.tar.xz
anaconda-78261bb43b883ef6a0d7b993e5043419c603f10c.zip
group boolean expr
Diffstat (limited to 'lilo.py')
-rw-r--r--lilo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lilo.py b/lilo.py
index c8668916d..729fe8a63 100644
--- a/lilo.py
+++ b/lilo.py
@@ -50,7 +50,7 @@ class LiloConfiguration:
for l in f.readlines():
l = l[:-1]
orig = l
- while (l and l[0] == ' ' or l[0] == '\t'):
+ while (l and (l[0] == ' ' or l[0] == '\t')):
l = l[1:]
if (not l or l[0] == '#'):
self.order.append('#' + orig)