summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)