diff options
author | Erik Troan <ewt@redhat.com> | 2001-01-12 19:14:19 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-01-12 19:14:19 +0000 |
commit | bcca68131a29501f8312061d1389718e99aa1809 (patch) | |
tree | fd99d40ab39ea1839dd4f71019eaf027ff5efbbd /textw | |
parent | 311b94823a85c1a7b09b60a9f6259372256ea66b (diff) | |
download | anaconda-bcca68131a29501f8312061d1389718e99aa1809.tar.gz anaconda-bcca68131a29501f8312061d1389718e99aa1809.tar.xz anaconda-bcca68131a29501f8312061d1389718e99aa1809.zip |
use symbolic names for ram thresholds
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partitioning_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partitioning_text.py b/textw/partitioning_text.py index 830685947..23029e3e3 100644 --- a/textw/partitioning_text.py +++ b/textw/partitioning_text.py @@ -206,7 +206,7 @@ class TurnOnSwapWindow: beenTurnedOn = 0 def __call__(self, screen, todo): - if self.beenTurnedOn or (iutil.memInstalled() > 34000): + if self.beenTurnedOn or (iutil.memInstalled() > isys.EARLY_SWAP_RAM): return INSTALL_NOOP if not todo.instClass.earlySwapOn: |