Replace removed cmp parameter of list.sort() by key in getSortedAccounts()
This commit is contained in:
parent
ced7b4df30
commit
327a539a55
|
@ -22,10 +22,8 @@ def getSortedAccounts():
|
||||||
"""Get a sorted list of address config sections"""
|
"""Get a sorted list of address config sections"""
|
||||||
configSections = BMConfigParser().addresses()
|
configSections = BMConfigParser().addresses()
|
||||||
configSections.sort(
|
configSections.sort(
|
||||||
cmp=lambda x, y: cmp(
|
key=lambda item:
|
||||||
BMConfigParser().get(x, 'label').decode('utf-8').lower(),
|
BMConfigParser().get(item, 'label').decode('utf-8').lower())
|
||||||
BMConfigParser().get(y, 'label').decode('utf-8').lower())
|
|
||||||
)
|
|
||||||
return configSections
|
return configSections
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user