diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-09-18 20:28:46 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-09-18 20:28:46 +0000 |
commit | e88e5e47a93012ca8555730639077298447825c6 (patch) | |
tree | 1a5b79f18ef1b286bf844c51933f35507f3083d0 | |
parent | 70bedc6a848220e5dd36aeede310e999fca77c20 (diff) | |
download | anaconda-e88e5e47a93012ca8555730639077298447825c6.tar.gz anaconda-e88e5e47a93012ca8555730639077298447825c6.tar.xz anaconda-e88e5e47a93012ca8555730639077298447825c6.zip |
merge from 7-2-branch
-rw-r--r-- | autopart.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autopart.py b/autopart.py index 148a34bc4..657b364d8 100644 --- a/autopart.py +++ b/autopart.py @@ -543,6 +543,7 @@ def growParts(diskset, requests, newParts): # binary search # print "start min, max, cur, diffs = ",min,max,cur,diff,lastDiff inner_iter = 0 + ret = PARTITION_SUCCESS # request succeeded with initial size while (max != min) and (lastDiff != diff) and (inner_iter < 2000): # printNewRequestsCyl(diskset, newRequest) |