diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-19 17:31:49 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-19 17:31:49 +0000 |
commit | 6bb36aa36886655ccdf4ea6e77ae09f6a43f76b4 (patch) | |
tree | fd70ee1dfa31014261fb291a35001ca0820155d5 /text.py | |
parent | 1f05d484b27fe696b98126822cdb0e6589c4f217 (diff) | |
download | anaconda-6bb36aa36886655ccdf4ea6e77ae09f6a43f76b4.tar.gz anaconda-6bb36aa36886655ccdf4ea6e77ae09f6a43f76b4.tar.xz anaconda-6bb36aa36886655ccdf4ea6e77ae09f6a43f76b4.zip |
fixed
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -78,7 +78,7 @@ class UpgradeExamineWindow: ButtonChoiceWindow(screen, _("Error"), _("You don't have any Linux partitions. You " "can't upgrade this system!") - [ _("Back") ], width = 50) + buttons = [ _("Back") ], width = 50) return INSTALL_BACK if len (parts) > 1: @@ -812,6 +812,9 @@ class InstallProgressWindow: self.g = toplevel screen.refresh() + def __del__ (self): + self.screen.popWindow () + class WaitWindow: def pop(self): |