summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-12-01 22:23:43 +0000
committerJeremy Katz <katzj@redhat.com>2003-12-01 22:23:43 +0000
commitaaa359c679693ca58fcde162529f65e15f97ca5e (patch)
tree1c3f391169710b1b25d8252a3409ab5c2afaa48b /iutil.py
parentc348a3fbe61816d788fa60efd0ba59ad8b8519d1 (diff)
downloadanaconda-aaa359c679693ca58fcde162529f65e15f97ca5e.tar.gz
anaconda-aaa359c679693ca58fcde162529f65e15f97ca5e.tar.xz
anaconda-aaa359c679693ca58fcde162529f65e15f97ca5e.zip
usbfs and not usbdevfs now
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iutil.py b/iutil.py
index eb1377a5e..162c3413d 100644
--- a/iutil.py
+++ b/iutil.py
@@ -481,7 +481,7 @@ def isUSBDevFSMounted():
lines = f.readlines()
f.close()
for l in lines:
- if string.find(l, "usbdevfs") != -1:
+ if string.find(l, "usbfs") != -1:
return 1
except:
log("In isUSBMounted, failed to open /proc/mounts")