Porting bitmessageqt to Qt5 #1389
|
@ -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