diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-03 18:45:11 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-03 18:45:11 +0000 |
commit | 0e6557ee9929e6db84e75d4eb523976af297166e (patch) | |
tree | 2f78940b580cb74aae027ad49824247058175935 /xf86config.py | |
parent | 9453be824a2676ce2a77145b09ad40b0ed74731a (diff) | |
download | anaconda-0e6557ee9929e6db84e75d4eb523976af297166e.tar.gz anaconda-0e6557ee9929e6db84e75d4eb523976af297166e.tar.xz anaconda-0e6557ee9929e6db84e75d4eb523976af297166e.zip |
fix for testing mode
Diffstat (limited to 'xf86config.py')
-rw-r--r-- | xf86config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xf86config.py b/xf86config.py index 7d3ad7786..b40f9b794 100644 --- a/xf86config.py +++ b/xf86config.py @@ -294,12 +294,12 @@ EndSection config.write ( """ Section "Pointer" - Protocol "%(mouseProto)s" - Device "%(mouseDev)s" + Protocol "%s" + Device "/dev/%s" Emulate3Buttons Emulate3Timeout 50 EndSection -""" % self.mouse) +""" % (self.mouse.info["XMOUSETYPE"], self.mouse.device)) config.write (self.monitorSection ()) config.write (self.deviceSection ()) config.write (self.screenSection ()) |