From 31c211561c8c3f3d8fbefecf32c063833f9869bf Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 5 Feb 2002 21:04:10 +0000 Subject: * don't destroy the exception dialog; seems to have adverse effects on debugging * return the proper backwards value for saving tracebacks to floppy --- gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui.py b/gui.py index 5da345cce..8f35c4fd3 100755 --- a/gui.py +++ b/gui.py @@ -239,7 +239,7 @@ class ExceptionWindow: win.show_all () self.window = win self.rc = self.window.run () - self.window.destroy() +# self.window.destroy() def getrc (self): # I did it this way for future expantion @@ -344,7 +344,7 @@ class InstallInterface: "choose your diskette carefully."), "okcancel") rc = window.getrc() - return rc + return not rc def getBootdisk (self): return None -- cgit