diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-12-13 21:48:41 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-12-13 21:48:41 +0000 |
commit | 433a4e0869c8cb41f45fe90e74aa601d9a95897f (patch) | |
tree | a41f996845613210f3b9c2fbf8092a31a44959ca /partedUtils.py | |
parent | c9dfc6a307998d91aa51b30b02b2f7eb9f4f04ab (diff) | |
download | anaconda-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.py | 2 |
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 |