diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-20 23:47:26 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-20 23:47:26 +0000 |
commit | 78261bb43b883ef6a0d7b993e5043419c603f10c (patch) | |
tree | 3441f2ec53728ecc32b44835bded34c262e1b5f8 /lilo.py | |
parent | efe6ad6ccac4cbc1514281846edc42a22ec354ae (diff) | |
download | anaconda-78261bb43b883ef6a0d7b993e5043419c603f10c.tar.gz anaconda-78261bb43b883ef6a0d7b993e5043419c603f10c.tar.xz anaconda-78261bb43b883ef6a0d7b993e5043419c603f10c.zip |
group boolean expr
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |