summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-05-31 20:32:59 +0000
committerMatt Wilson <msw@redhat.com>2000-05-31 20:32:59 +0000
commite1f16ddfd55f6b1ac85b904faf8e72d14696aca6 (patch)
treee8df4ab4edd58780bf82c96588cffda055eb3e05 /gui.py
parent5647bc5bd8fa9a1b96c8d197b7fce149958d2203 (diff)
downloadanaconda-e1f16ddfd55f6b1ac85b904faf8e72d14696aca6.tar.gz
anaconda-e1f16ddfd55f6b1ac85b904faf8e72d14696aca6.tar.xz
anaconda-e1f16ddfd55f6b1ac85b904faf8e72d14696aca6.zip
ignore SystemExit
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index 9632dbe40..eebdd5879 100755
--- a/gui.py
+++ b/gui.py
@@ -174,6 +174,8 @@ class GtkMainThread (Thread):
threads_enter ()
try:
mainloop ()
+ except SystemExit:
+ pass
except:
ExceptionWindow ()
threads_leave ()
@@ -672,6 +674,8 @@ class InstallControlWindow (Thread):
threads_enter ()
try:
self.main ()
+ except SystemExit:
+ pass
except:
threads_leave()
mainquit()