summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-12-13 21:48:41 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-12-13 21:48:41 +0000
commit433a4e0869c8cb41f45fe90e74aa601d9a95897f (patch)
treea41f996845613210f3b9c2fbf8092a31a44959ca /partedUtils.py
parentc9dfc6a307998d91aa51b30b02b2f7eb9f4f04ab (diff)
downloadanaconda-433a4e0869c8cb41f45fe90e74aa601d9a95897f.tar.gz
anaconda-433a4e0869c8cb41f45fe90e74aa601d9a95897f.tar.xz
anaconda-433a4e0869c8cb41f45fe90e74aa601d9a95897f.zip
* partedUtils.py (DiskSet): Pass self.anaconda.intf to checkDiskLabel.
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 5dd0861f9..c2188ebd5 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -1103,7 +1103,7 @@ class DiskSet:
filter_partitions(disk, validateFsType)
# check that their partition table is valid for their architecture
- ret = checkDiskLabel(disk)
+ ret = checkDiskLabel(disk, self.anaconda.intf)
if ret == 1:
DiskSet.skippedDisks.append(drive)
continue