diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-09 04:13:52 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-09 04:13:52 +0000 |
commit | 53d6064dd64e5da774d14aefef2f2eadeb449e64 (patch) | |
tree | f7d3ac59e440e7ffcb0a7153e0ce6564a2362074 | |
parent | 53c2ef4fb19e1c7afaaead06080b8e720d988bf9 (diff) | |
download | anaconda-53d6064dd64e5da774d14aefef2f2eadeb449e64.tar.gz anaconda-53d6064dd64e5da774d14aefef2f2eadeb449e64.tar.xz anaconda-53d6064dd64e5da774d14aefef2f2eadeb449e64.zip |
fix for new api
-rw-r--r-- | iw/mouse.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/mouse.py b/iw/mouse.py index 75cd6e921..4e02179b0 100644 --- a/iw/mouse.py +++ b/iw/mouse.py @@ -140,7 +140,8 @@ class MouseWindow (InstallWindow): sorted_mice_keys = self.availableMice.keys() sorted_mice_keys.sort () - (currentMouse, currentDev) = self.todo.mouse.get() + currentDev = self.todo.mouse.getDevice () + (currentMouse, emulate3) = self.todo.mouse.get () deviceList = [ ("/dev/ttyS0 (COM1 under DOS)", "ttyS0" ), ("/dev/ttyS1 (COM2 under DOS)", "ttyS1" ), |