Better unicode support
This commit is contained in:
parent
ece019fb61
commit
e83ea10fe4
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
mintmenu (5.2.4) katya; urgency=low
|
||||
|
||||
* Improvements in Unicode support
|
||||
|
||||
-- Clement Lefebvre <root@linuxmint.com> Tue, 27 Sep 2011 14:14:00 +0000
|
||||
|
||||
mintmenu (5.2.3) katya; urgency=low
|
||||
|
||||
* Fix for applications with no comments/generic_names in favorites
|
||||
|
@ -344,7 +344,7 @@ class ApplicationLauncher( easyButton ):
|
||||
|
||||
def strip_accents(self, string):
|
||||
import unicodedata
|
||||
return unicodedata.normalize('NFKD', unicode(string)).encode('ASCII', 'ignore')
|
||||
return unicodedata.normalize('NFKD', unicode(string)).encode('UTF8', 'ignore')
|
||||
|
||||
|
||||
def getTooltip( self ):
|
||||
|
Loading…
Reference in New Issue
Block a user