summaryrefslogtreecommitdiffstats
path: root/partitions.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-12-03 12:59:39 -0500
committerJeremy Katz <katzj@redhat.com>2007-12-03 15:47:51 -0500
commitd6b03ab77abcf68c9dbb9f0c674c7dbf3548b786 (patch)
treef8d4b6f19989bc235780789eba6c3368e828a1c4 /partitions.py
parentacd7e206ae041101203d1bb0011a37f735bdbf04 (diff)
downloadanaconda-d6b03ab77abcf68c9dbb9f0c674c7dbf3548b786.tar.gz
anaconda-d6b03ab77abcf68c9dbb9f0c674c7dbf3548b786.tar.xz
anaconda-d6b03ab77abcf68c9dbb9f0c674c7dbf3548b786.zip
Use libblkid instead of custom filesystem probing
This patch gets rid of all of our custom filesystem type and label probing and switches it all over to using a simple binding to libblkid instead.
Diffstat (limited to 'partitions.py')
-rw-r--r--partitions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitions.py b/partitions.py
index 3c6f5fe7a..a2de28971 100644
--- a/partitions.py
+++ b/partitions.py
@@ -259,7 +259,7 @@ class Partitions:
raidvols.append(req.uniqueID)
- fs = partedUtils.sniffFilesystemType(theDev)
+ fs = partedUtils.sniffFilesystemType("/dev/%s" %(theDev,))
fslabel = None
if fs is None:
fsystem = fsset.fileSystemTypeGet("foreign")