summaryrefslogtreecommitdiffstats
path: root/iw/mouse_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-03-30 20:08:24 +0000
committerJeremy Katz <katzj@redhat.com>2003-03-30 20:08:24 +0000
commit289ce90e9d8bcc45a927b5ca8d54aff3d8c53c4b (patch)
tree8883b33105b53466e40ffcaae413a4a761186c49 /iw/mouse_gui.py
parentc58da5caa0c752b46bddd31134f59e8148d5af29 (diff)
downloadanaconda-289ce90e9d8bcc45a927b5ca8d54aff3d8c53c4b.tar.gz
anaconda-289ce90e9d8bcc45a927b5ca8d54aff3d8c53c4b.tar.xz
anaconda-289ce90e9d8bcc45a927b5ca8d54aff3d8c53c4b.zip
ugh -- this wasn't really very translation friendly. don't translate for now until we clean this up (#87431)
Diffstat (limited to 'iw/mouse_gui.py')
-rw-r--r--iw/mouse_gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/mouse_gui.py b/iw/mouse_gui.py
index 8a6fd7eff..3eb23cc93 100644
--- a/iw/mouse_gui.py
+++ b/iw/mouse_gui.py
@@ -99,7 +99,7 @@ class MouseWindow(InstallWindow):
# go though and find all the makes that have more than 1 mouse
toplevels = {}
for key, value in self.availableMice.items():
- make = string.split(_(key), ' - ')[0]
+ make = string.split(key, ' - ')[0]
if toplevels.has_key(make):
toplevels[make] = toplevels[make] + 1
else:
@@ -117,7 +117,7 @@ class MouseWindow(InstallWindow):
# now go and add each child node
for key, value in self.availableMice.items():
- fields = string.split(_(key), ' - ')
+ fields = string.split(key, ' - ')
make = fields[0]
model = fields[1]
parent = toplevels.get(make)