summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-06-23 20:40:21 +0000
committerMike Fulbright <msf@redhat.com>2003-06-23 20:40:21 +0000
commit11b3a54aae118bbd9bce8a0b0241bc8194c5e18d (patch)
tree0a8ed85b134b39a3705f9adb40e8e2f1871483b2 /upgrade.py
parent0804e9a0a958be39dbd83985924bedb70922621d (diff)
downloadanaconda-11b3a54aae118bbd9bce8a0b0241bc8194c5e18d.tar.gz
anaconda-11b3a54aae118bbd9bce8a0b0241bc8194c5e18d.tar.xz
anaconda-11b3a54aae118bbd9bce8a0b0241bc8194c5e18d.zip
removed reference to unused corrected keyword for memInstalled() function.
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py
index 9d05d90da..030d2f2f0 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -150,7 +150,7 @@ def upgradeMigrateFind(dispatch, thefsset):
# returns None if no more swap is needed
def upgradeSwapSuggestion(dispatch, id, instPath):
# mem is in kb -- round it up to the nearest 4Mb
- mem = iutil.memInstalled(corrected = 0)
+ mem = iutil.memInstalled()
rem = mem % 16384
if rem:
mem = mem + (16384 - rem)