key not keys
This commit is contained in:
parent
563f9a2a6d
commit
4316c68c6c
1 changed files with 2 additions and 2 deletions
|
@ -555,5 +555,5 @@ def sort_string(string):
|
||||||
string = re.sub('(\d+)', lambda x: '%010d' % int(x.group(0)), string)
|
string = re.sub('(\d+)', lambda x: '%010d' % int(x.group(0)), string)
|
||||||
return unicodedata.normalize('NFKD', string)
|
return unicodedata.normalize('NFKD', string)
|
||||||
|
|
||||||
def sorted_strings(strings, keys=None):
|
def sorted_strings(strings, key=None):
|
||||||
return sorted(strings, cmp=lambda a, b: cmp(sort_string(a), sort_string(b)), keys=keys)
|
return sorted(strings, cmp=lambda a, b: cmp(sort_string(a), sort_string(b)), key=key)
|
||||||
|
|
Loading…
Reference in a new issue