diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-28 04:15:06 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-28 04:15:06 +0000 |
commit | 7984272198d404e6008fc4dad9918a51229a200b (patch) | |
tree | a1832955f6fb1cec5b262981e2eb9f57cf252cf4 /fstab.py | |
parent | cab4e61a0a3dde2c4f45f45eb34c4a084d46f6d1 (diff) | |
download | anaconda-7984272198d404e6008fc4dad9918a51229a200b.tar.gz anaconda-7984272198d404e6008fc4dad9918a51229a200b.tar.xz anaconda-7984272198d404e6008fc4dad9918a51229a200b.zip |
s/next/continue/, add a little logging
Diffstat (limited to 'fstab.py')
-rw-r--r-- | fstab.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -476,7 +476,7 @@ class Fstab: try: table = _balkan.readTable ('/tmp/' + drive) except SystemError: - next + continue for i in range (len (table)): dev = drive + str (i + 1) @@ -489,7 +489,7 @@ class Fstab: if label: labels[dev] = label #print "label for", dev - + log (str(labels)) return labels def makeFilesystems(self): |