summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-05 21:04:10 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-05 21:04:10 +0000
commit31c211561c8c3f3d8fbefecf32c063833f9869bf (patch)
tree765a362293d6a343d981432c72818d67b03377a4
parentd30066c29f0a17daba7d85aa58fe76b8f5f7389e (diff)
downloadanaconda-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-xgui.py4
1 files 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