projects
/
minwii.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bugfix tri alphabétique des chansons.
[minwii.git]
/
src
/
minwii
/
widgets
/
songfilebrowser.py
diff --git
a/src/minwii/widgets/songfilebrowser.py
b/src/minwii/widgets/songfilebrowser.py
index
8dd4821
..
08008e3
100755
(executable)
--- a/
src/minwii/widgets/songfilebrowser.py
+++ b/
src/minwii/widgets/songfilebrowser.py
@@
-300,8
+300,8
@@
def _recurseDecomposition(uc):
fullDeco = u''.join(filter(lambda c : isPrintable(c), fullDeco))
return fullDeco
fullDeco = u''.join(filter(lambda c : isPrintable(c), fullDeco))
return fullDeco
-def desacc(s) :
- us = s.decode(
'utf-8'
, 'ignore')
+def desacc(s
, encoding='iso-8859-1'
) :
+ us = s.decode(
encoding
, 'ignore')
ret = []
for uc in us :
ret.append(_recurseDecomposition(uc))
ret = []
for uc in us :
ret.append(_recurseDecomposition(uc))