diff options
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): |