summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-12-13 23:33:43 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-12-13 23:33:43 +0000
commit20f317455db23c91937998ae987ba3f195efe91d (patch)
tree0f2774d64a02f4b459bf491523e09a99dbefbc63 /upgrade.py
parent433a4e0869c8cb41f45fe90e74aa601d9a95897f (diff)
downloadanaconda-20f317455db23c91937998ae987ba3f195efe91d.tar.gz
anaconda-20f317455db23c91937998ae987ba3f195efe91d.tar.xz
anaconda-20f317455db23c91937998ae987ba3f195efe91d.zip
* partedUtils.py (DiskSet.openDevices): Don't always dasdfmt on zSeries,
only do that for disks that are flagged to be cleared or if the init all flag is set. * upgrade.py (findExistingRoots): Do not pass anaconda object reference to findExistingRootPartitions(). * iw/autopart_type.py (PartitionTypeWindow): Do not pass intf to checkNoDisks(). * textw/partition_text.py: Likewise.
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/upgrade.py b/upgrade.py
index 52e7002e3..047181b39 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -94,8 +94,7 @@ def findExistingRoots(anaconda, upgradeany = 0):
_("Searching for %s installations...") %
(productName,), 5)
- rootparts = anaconda.id.diskset.findExistingRootPartitions(anaconda,
- upgradeany = upgradeany)
+ rootparts = anaconda.id.diskset.findExistingRootPartitions(upgradeany = upgradeany)
for i in range(1, 6):
time.sleep(0.25)
win.set(i)