From 56188b8c165e9ff4b0d90b549c35d1143f44380e Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Fri, 24 Oct 2008 11:55:41 -0400 Subject: Catch more X failures and fallback to text (#467158). --- anaconda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'anaconda') 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 -- cgit