summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-06-06 03:09:36 +0000
committerMatt Wilson <msw@redhat.com>2000-06-06 03:09:36 +0000
commitbfb6e5656d2ff407c9b5e6d88037f899b149e367 (patch)
tree243fb5959545537b3e31599a67555d9c04da2128 /gui.py
parent4bbbc9ffd87bf3a45bb87c2dc8b0561b948af7ab (diff)
downloadanaconda-bfb6e5656d2ff407c9b5e6d88037f899b149e367.tar.gz
anaconda-bfb6e5656d2ff407c9b5e6d88037f899b149e367.tar.xz
anaconda-bfb6e5656d2ff407c9b5e6d88037f899b149e367.zip
another try at exiting
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 231552fb3..1208d8cdb 100755
--- a/gui.py
+++ b/gui.py
@@ -176,7 +176,7 @@ class GtkMainThread (Thread):
mainloop ()
except SystemExit, code:
# pass exit on down
- raise SystemExit, code
+ sys.exit(code)
except:
ExceptionWindow ()
threads_leave ()
@@ -676,7 +676,7 @@ class InstallControlWindow (Thread):
try:
self.main ()
except SystemExit, code:
- raise SystemExit, code
+ sys.exit (code)
except:
threads_leave()
mainquit()