diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-24 16:24:04 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-24 16:24:04 +0000 |
commit | 1561c74386cce188e288324de09ef2a4e1e05d8f (patch) | |
tree | 8896e628ee5dfbd82873c57abf321839358477d1 /xf86config.py | |
parent | 59d14716f37a5c59b612a47c9653236bb0249870 (diff) | |
download | anaconda-1561c74386cce188e288324de09ef2a4e1e05d8f.tar.gz anaconda-1561c74386cce188e288324de09ef2a4e1e05d8f.tar.xz anaconda-1561c74386cce188e288324de09ef2a4e1e05d8f.zip |
ack! check this in
Diffstat (limited to 'xf86config.py')
-rw-r--r-- | xf86config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xf86config.py b/xf86config.py index 41d591dab..637fc807a 100644 --- a/xf86config.py +++ b/xf86config.py @@ -855,8 +855,9 @@ class XF86Config: pass # kludge to handle i810 displays which require at least 16 Meg - if (self.vidCards[self.primary].has_key("DRIVER") and - (self.vidCards[self.primary]["DRIVER"] == "i810")): + if (self.vidCards + and self.vidCards[self.primary].has_key("DRIVER") + and (self.vidCards[self.primary]["DRIVER"] == "i810")): self.vidRam = "16384" |