summaryrefslogtreecommitdiffstats
path: root/xf86config.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-17 20:49:05 +0000
committerMatt Wilson <msw@redhat.com>2000-02-17 20:49:05 +0000
commit0557e1d6c67d6fd8b3e82b2322f643ac2f684282 (patch)
tree7287efeef513a171f04c3f448028aacf293ab4b8 /xf86config.py
parent8f1889180a8583cceb8baf8b4541006d6084657a (diff)
downloadanaconda-0557e1d6c67d6fd8b3e82b2322f643ac2f684282.tar.gz
anaconda-0557e1d6c67d6fd8b3e82b2322f643ac2f684282.tar.xz
anaconda-0557e1d6c67d6fd8b3e82b2322f643ac2f684282.zip
EEEEK. horiz and vert were being read BACKWARDS.
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 b7a1cde27..2add65724 100644
--- a/xf86config.py
+++ b/xf86config.py
@@ -145,8 +145,8 @@ class XF86Config:
man = string.strip(fields[0])
model = string.strip(fields[1])
eisa = string.strip(fields[2])
- vert = string.strip(fields[3])
- horiz = string.strip(fields[4])
+ horiz = string.strip(fields[3])
+ vert = string.strip(fields[4])
if self.monlist.has_key(man):
self.monlist[man].append((model, eisa, vert, horiz))
else: