summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-06-28 04:15:06 +0000
committerMatt Wilson <msw@redhat.com>2000-06-28 04:15:06 +0000
commit7984272198d404e6008fc4dad9918a51229a200b (patch)
treea1832955f6fb1cec5b262981e2eb9f57cf252cf4 /fstab.py
parentcab4e61a0a3dde2c4f45f45eb34c4a084d46f6d1 (diff)
downloadanaconda-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fstab.py b/fstab.py
index 590bbe429..0ef599fc7 100644
--- a/fstab.py
+++ b/fstab.py
@@ -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):