diff options
author | Matt Wilson <msw@redhat.com> | 2001-06-27 06:27:58 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-06-27 06:27:58 +0000 |
commit | 2bba38c5baec17e551edab1b3fbfb62d8f315e5b (patch) | |
tree | cb8bc51e99a07d940ebc583b44e1de73bb8523cc /textw/upgrade_text.py | |
parent | 08a3c481379fbf7d89894ab44a8805f155e0d0e9 (diff) | |
download | anaconda-2bba38c5baec17e551edab1b3fbfb62d8f315e5b.tar.gz anaconda-2bba38c5baec17e551edab1b3fbfb62d8f315e5b.tar.xz anaconda-2bba38c5baec17e551edab1b3fbfb62d8f315e5b.zip |
break upgrade swap suggestion out into another step and store its findings in
instdata.
Diffstat (limited to 'textw/upgrade_text.py')
-rw-r--r-- | textw/upgrade_text.py | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py index 0d04cc7d7..45bb71992 100644 --- a/textw/upgrade_text.py +++ b/textw/upgrade_text.py @@ -8,10 +8,8 @@ from constants_text import * import upgrade class UpgradeSwapWindow: - def __call__ (self, screen, dispatch, intf, fsset, instPath): - rc = upgrade.swapSuggestion(instPath, fsset) - if not rc: - return INSTALL_OK + def __call__ (self, screen, intf, fsset, instPath, swapInfo): + rc = swapInfo (fsList, suggSize, suggMntPoint) = rc @@ -83,18 +81,21 @@ class UpgradeSwapWindow: try: val = int(val) except ValueError: - todo.intf.messageWindow(_("Error"), - _("The value you entered is not a valid number.")) + intf.messageWindow(_("Error"), + _("The value you entered is not a " + "valid number.")) if type(val) == type(1): (mnt, part, size) = fsList[listbox.current()] if size < (val + 16): - todo.intf.messageWindow(_("Error"), - _("There is not enough space on the device you " - "selected for the swap partition.")) + intf.messageWindow(_("Error"), + _("There is not enough space on the " + "device you selected for the swap " + "partition.")) elif val > 2000 or val < 1: - todo.intf.messageWindow(_("Warning"), - _("The swap file must be between 1 and 2000 MB in size.")) + intf.messageWindow(_("Warning"), + _("The swap file must be between 1 " + "and 2000 MB in size.")) else: screen.popWindow() if todo.setupFilesystems: |