sort regions by label instead of values
This commit is contained in:
parent
1d0560be87
commit
47f159a3a4
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ class BanquePopulaireBackend(BaseBackend, ICapBank):
|
|||
'www.ibps.rivesparis.banquepopulaire.fr': u'Rives de Paris',
|
||||
'www.ibps.sud.banquepopulaire.fr': u'Sud',
|
||||
'www.ibps.valdefrance.banquepopulaire.fr': u'Val de France',
|
||||
}.iteritems())])
|
||||
}.iteritems(), key=lambda (k, v): (v, k))])
|
||||
CONFIG = BackendConfig(Value('website', label='Website to use', choices=website_choices),
|
||||
ValueBackendPassword('login', label='Account ID', masked=False),
|
||||
ValueBackendPassword('password', label='Password'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue