diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-04 17:37:48 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-04 17:37:48 +0000 |
commit | ca8d1a4e929a4b32b535870f260fc9fd8cb264f2 (patch) | |
tree | fe9e2da13d41861675d0ee037a8a2bc353305aef /videocard.py | |
parent | 0d5a71d71d1006be856638fd26309aa08308d798 (diff) | |
download | anaconda-ca8d1a4e929a4b32b535870f260fc9fd8cb264f2.tar.gz anaconda-ca8d1a4e929a4b32b535870f260fc9fd8cb264f2.tar.xz anaconda-ca8d1a4e929a4b32b535870f260fc9fd8cb264f2.zip |
if we don't know anything about the card, allow testing
Diffstat (limited to 'videocard.py')
-rw-r--r-- | videocard.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/videocard.py b/videocard.py index 988aea35b..65dcee6ce 100644 --- a/videocard.py +++ b/videocard.py @@ -142,6 +142,8 @@ class VideoCard: def canTestSafely(self): cardData = self.getCardData() + if not cardData: + return 1 if cardData.has_key("DRIVER"): curdriver = cardData["DRIVER"] noprobedriverList = ("i810", "tdfx") |