summaryrefslogtreecommitdiffstats
path: root/videocard.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-02-01 04:59:57 +0000
committerMike Fulbright <msf@redhat.com>2002-02-01 04:59:57 +0000
commit6c9b4a6f6c4fe7add748a916ecfd41127c1b3b12 (patch)
tree8aa48fab7390a949ce81dfa66ffa379e9f0be862 /videocard.py
parent03c2902bc1854bae9a48aa7d9e51ceb1d6235827 (diff)
downloadanaconda-6c9b4a6f6c4fe7add748a916ecfd41127c1b3b12.tar.gz
anaconda-6c9b4a6f6c4fe7add748a916ecfd41127c1b3b12.tar.xz
anaconda-6c9b4a6f6c4fe7add748a916ecfd41127c1b3b12.zip
remove warning messages on broken CardsDB for now
Diffstat (limited to 'videocard.py')
-rw-r--r--videocard.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/videocard.py b/videocard.py
index 5d66a1b79..5ccbb0669 100644
--- a/videocard.py
+++ b/videocard.py
@@ -317,11 +317,12 @@ class VideoCardInfo:
for line in lines:
line = string.strip (line)
if not line and name:
- if card.has_key("DRIVER") and card.has_key("UNSUPPORTED"):
- print "WARNING: CardsDB entry for %s says XFree86 4.x is unsupported!" % name
-
+# if card.has_key("DRIVER") and card.has_key("UNSUPPORTED"):
+# print "WARNING: CardsDB entry for %s says XFree86 4.x is unsupported!" % name
+
if card.has_key("SERVER") and not card.has_key("DRIVER"):
- print "WARNING: CardsDB entry for %s is XFree86 3.x only, dropping" % name
+# print "WARNING: CardsDB entry for %s is XFree86 3.x only, dropping" % name
+ pass
else:
Video_cardslist[name] = card
card = {}