summaryrefslogtreecommitdiffstats
path: root/xserver.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-31 23:03:02 +0000
committerMatt Wilson <msw@redhat.com>1999-08-31 23:03:02 +0000
commit09f6d43963b1d9633090d7894af1399f4a161e6b (patch)
treec7f13cc04c5e48c3f9b0fae2737efea51b437c80 /xserver.py
parenta6270457bce863ceddf990b530d31ed66c58364c (diff)
downloadanaconda-09f6d43963b1d9633090d7894af1399f4a161e6b.tar.gz
anaconda-09f6d43963b1d9633090d7894af1399f4a161e6b.tar.xz
anaconda-09f6d43963b1d9633090d7894af1399f4a161e6b.zip
oops - WNOHANG, not NOHANG
Diffstat (limited to 'xserver.py')
-rw-r--r--xserver.py2
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"