diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-23 15:53:14 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-23 15:53:14 +0000 |
commit | fa882d61d9721d25c487dd326176dd9d079e41b8 (patch) | |
tree | 1702a7785c29b48def7de1b20ec4bcc7e13b99ea | |
parent | a146a31ce9bbb8c6b5ca808edb08a1340b395e4d (diff) | |
download | anaconda-fa882d61d9721d25c487dd326176dd9d079e41b8.tar.gz anaconda-fa882d61d9721d25c487dd326176dd9d079e41b8.tar.xz anaconda-fa882d61d9721d25c487dd326176dd9d079e41b8.zip |
deadlock gone again. :)
-rwxr-xr-x | gui.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -60,9 +60,9 @@ class WaitWindow: gdk_flush () thread = currentThread () print thread.getName () -# if thread.getName () == "gtk_main": - while events_pending (): - mainiteration (FALSE) + if thread.getName () == "gtk_main": + while events_pending (): + mainiteration (FALSE) threads_leave () def pop(self): |