fix links to filter items with unicode
This commit is contained in:
parent
110c0b252a
commit
541aa201bf
1 changed files with 1 additions and 0 deletions
|
|
@ -75,6 +75,7 @@ def get_positions(ids, pos, decode_id=False):
|
||||||
if decode_id:
|
if decode_id:
|
||||||
positions[i] = ids.index(ox.fromAZ(i))
|
positions[i] = ids.index(ox.fromAZ(i))
|
||||||
else:
|
else:
|
||||||
|
i = unicodedata.normalize('NFKD', i)
|
||||||
positions[i] = ids.index(i)
|
positions[i] = ids.index(i)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue