diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-02-05 21:04:10 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-02-05 21:04:10 +0000 |
commit | 31c211561c8c3f3d8fbefecf32c063833f9869bf (patch) | |
tree | 765a362293d6a343d981432c72818d67b03377a4 | |
parent | d30066c29f0a17daba7d85aa58fe76b8f5f7389e (diff) | |
download | anaconda-31c211561c8c3f3d8fbefecf32c063833f9869bf.tar.gz anaconda-31c211561c8c3f3d8fbefecf32c063833f9869bf.tar.xz anaconda-31c211561c8c3f3d8fbefecf32c063833f9869bf.zip |
* don't destroy the exception dialog; seems to have adverse effects on debugging
* return the proper backwards value for saving tracebacks to floppy
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |