summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-08 18:27:40 +0000
committerMatt Wilson <msw@redhat.com>1999-09-08 18:27:40 +0000
commitbfee0e7611dd99a4c1b7ffa2cd038c943aba5117 (patch)
tree27d84756da7ee78a2c672f88da663bdf34e2be33 /lilo.py
parentecce42954effad096e4c613b9705ca55f430efb3 (diff)
downloadanaconda-bfee0e7611dd99a4c1b7ffa2cd038c943aba5117.tar.gz
anaconda-bfee0e7611dd99a4c1b7ffa2cd038c943aba5117.tar.xz
anaconda-bfee0e7611dd99a4c1b7ffa2cd038c943aba5117.zip
o patches for jj for moving to kudzu for probing
o don't change the root text for a messagewindow
Diffstat (limited to 'lilo.py')
-rw-r--r--lilo.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/lilo.py b/lilo.py
index 729fe8a63..a79101cdb 100644
--- a/lilo.py
+++ b/lilo.py
@@ -2,8 +2,7 @@ import string
import os
class LiloConfiguration:
-
- def __repr__(self, tab = 0):
+ def __repr__ (self, tab = 0):
s = ""
for n in self.order:
if (tab):
@@ -44,7 +43,7 @@ class LiloConfiguration:
f.close()
os.chmod(file, 0644)
- def read(self, file):
+ def read (self, file):
f = open(file, "r")
image = None
for l in f.readlines():