diff options
author | bfox <bfox> | 2000-11-17 17:38:36 +0000 |
---|---|---|
committer | bfox <bfox> | 2000-11-17 17:38:36 +0000 |
commit | 0cedaf48a1488434fdb069ea35389f60956d402f (patch) | |
tree | 4112a6194b379593065b11400fc5a774ce7d8ffe /xserver.py | |
parent | 5d6545ebdd908001fd6dfa12e6ec583f6cfa94d5 (diff) | |
download | anaconda-0cedaf48a1488434fdb069ea35389f60956d402f.tar.gz anaconda-0cedaf48a1488434fdb069ea35389f60956d402f.tar.xz anaconda-0cedaf48a1488434fdb069ea35389f60956d402f.zip |
Fixed syntax error.
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xserver.py b/xserver.py index 5ad49f387..7e52dfd28 100644 --- a/xserver.py +++ b/xserver.py @@ -161,7 +161,8 @@ def startX(): # print "Sleeping 10 seconds" # time.sleep(10) except: - try: + pass +# try: # print "Skipping VGA16" #XXX - VGA16 can't do 800x600, so don't even try. Fall back to text instead @@ -177,7 +178,8 @@ def startX(): # testx(mouse, x) # print "Sleeping 15 seconds" # time.sleep(15) - except: +# except: +# pass # print x.server, "didn't work...falling back to text mode" # print "Sleeping 30 seconds" # time.sleep(30) |