summaryrefslogtreecommitdiffstats
path: root/xf86config.py
diff options
context:
space:
mode:
authorthan <than>2000-11-08 15:10:00 +0000
committerthan <than>2000-11-08 15:10:00 +0000
commitf20dbc0311a7869c710f07087b7d7c0fb9078e76 (patch)
tree79cfcd564400efce6db08cf469cee018ebc3e29d /xf86config.py
parent97227f36978440838acea411426cd1f43f2974c7 (diff)
downloadanaconda-f20dbc0311a7869c710f07087b7d7c0fb9078e76.tar.gz
anaconda-f20dbc0311a7869c710f07087b7d7c0fb9078e76.tar.xz
anaconda-f20dbc0311a7869c710f07087b7d7c0fb9078e76.zip
* fixed wrong array name "info". It should be "data"
Diffstat (limited to 'xf86config.py')
-rw-r--r--xf86config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/xf86config.py b/xf86config.py
index cbd40a39c..fed0e02a1 100644
--- a/xf86config.py
+++ b/xf86config.py
@@ -1171,9 +1171,9 @@ Section "Screen"
# see if 16 bpp is available, and if it should be the
# default depth
if self.keyVariant:
- info["enableVariant"] = ""
+ data["enableVariant"] = ""
if self.keyOptions:
- info["enableOptions"] = ""
+ data["enableOptions"] = ""
if maxdepth > 0:
if maxdepth > 16 and '16' in self.modes.keys() and self.modes['16']:
data["defaultDepth"] = "\n\tDefaultDepth\t16"