summaryrefslogtreecommitdiffstats
path: root/storage/udev.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-02-27 10:18:46 -0600
committerDavid Lehman <dlehman@redhat.com>2009-02-27 10:18:46 -0600
commit77e052201c1aa258def5fdde5c9b8745b79611f2 (patch)
treeebcdf7465fc944b97bd0b008a82cef0cb1d998ba /storage/udev.py
parentaddec40bb65f80a7f38166c5c87561d362b31fc9 (diff)
downloadanaconda-77e052201c1aa258def5fdde5c9b8745b79611f2.tar.gz
anaconda-77e052201c1aa258def5fdde5c9b8745b79611f2.tar.xz
anaconda-77e052201c1aa258def5fdde5c9b8745b79611f2.zip
Lots of minor fixes and cleanups. A non-exhaustive list follows.
- Change minsize/maxsize to minSize/maxSize since that's the convention elsewhere throughout the code. - Redirect output from all external utilities to tty5, not /dev/null. - Don't waste calls to basename for debug log statements, especially when the device can be None. - Add lots of missing imports. - Fix lots of remnants of previous code usage.
Diffstat (limited to 'storage/udev.py')
-rw-r--r--storage/udev.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/storage/udev.py b/storage/udev.py
index 05fa65c9b..4f83c2ad3 100644
--- a/storage/udev.py
+++ b/storage/udev.py
@@ -53,7 +53,6 @@ def enumerate_block_devices():
return devices
def udev_get_block_device(sysfs_path):
- log.debug("getting udev info for %s" % sysfs_path)
if not os.path.exists(sysfs_path):
log.debug("%s does not exist" % sysfs_path)
return None