summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-10-24 11:55:41 -0400
committerChris Lumens <clumens@redhat.com>2008-10-24 11:55:56 -0400
commit56188b8c165e9ff4b0d90b549c35d1143f44380e (patch)
treee5b0c9393c560e1f5db733483d31ffbdb70f73b2 /anaconda
parentff9d4238a55a2ab20620aec4dff394ea026e52c2 (diff)
downloadanaconda-56188b8c165e9ff4b0d90b549c35d1143f44380e.tar.gz
anaconda-56188b8c165e9ff4b0d90b549c35d1143f44380e.tar.xz
anaconda-56188b8c165e9ff4b0d90b549c35d1143f44380e.zip
Catch more X failures and fallback to text (#467158).
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index f9940b862..8612d37f8 100755
--- a/anaconda
+++ b/anaconda
@@ -840,7 +840,7 @@ if __name__ == "__main__":
os.environ["DISPLAY"] = ":1"
doStartupX11Actions(opts.runres)
xserver_pid = proc.pid
- except OSError:
+ except OSError, RuntimeError:
stdoutLog.warning(" X startup failed, falling back to text mode")
opts.display_mode = 't'
graphical_failed = 1