diff options
author | Matt Wilson <msw@redhat.com> | 2000-05-31 20:32:59 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-05-31 20:32:59 +0000 |
commit | e1f16ddfd55f6b1ac85b904faf8e72d14696aca6 (patch) | |
tree | e8df4ab4edd58780bf82c96588cffda055eb3e05 /gui.py | |
parent | 5647bc5bd8fa9a1b96c8d197b7fce149958d2203 (diff) | |
download | anaconda-e1f16ddfd55f6b1ac85b904faf8e72d14696aca6.tar.gz anaconda-e1f16ddfd55f6b1ac85b904faf8e72d14696aca6.tar.xz anaconda-e1f16ddfd55f6b1ac85b904faf8e72d14696aca6.zip |
ignore SystemExit
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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() |