diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-31 23:03:02 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-31 23:03:02 +0000 |
commit | 09f6d43963b1d9633090d7894af1399f4a161e6b (patch) | |
tree | c7f13cc04c5e48c3f9b0fae2737efea51b437c80 | |
parent | a6270457bce863ceddf990b530d31ed66c58364c (diff) | |
download | anaconda-09f6d43963b1d9633090d7894af1399f4a161e6b.tar.gz anaconda-09f6d43963b1d9633090d7894af1399f4a161e6b.tar.xz anaconda-09f6d43963b1d9633090d7894af1399f4a161e6b.zip |
oops - WNOHANG, not NOHANG
-rw-r--r-- | xserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xserver.py b/xserver.py index cb767fa76..8c0e11457 100644 --- a/xserver.py +++ b/xserver.py @@ -99,7 +99,7 @@ EndSection # give time for the server to fail (if it is going to fail...) time.sleep (1) - pid, status = waitpid (server, os.NOHANG) + pid, status = waitpid (server, os.WNOHANG) if status: raise RuntimeError, "X server failed to start" |