replace refs to locale.strcoll with refs to locale.strxfrm

svn: r12712
This commit is contained in:
Gerald Britton
2009-06-25 21:09:49 +00:00
parent 3a41651e50
commit b0a6f7c854
4 changed files with 8 additions and 8 deletions

View File

@@ -77,8 +77,7 @@ class ChangeTypes(Tool.BatchTool, ManagedWindow.ManagedWindow):
# Need to display localized event names
etype = EventType()
event_names = etype.get_standard_names()
event_names.sort(locale.strcoll)
event_names = sorted(etype.get_standard_names(), key=locale.strxfrm)
AutoComp.fill_combo(self.auto1,event_names)
AutoComp.fill_combo(self.auto2,event_names)