Fixed mintMenu not working properly in Korean (don't re-encode unicode strings)
This commit is contained in:
parent
b1849f6195
commit
6994188c71
@ -354,6 +354,9 @@ class ApplicationLauncher( easyButton ):
|
||||
return True
|
||||
|
||||
def strip_accents(self, string):
|
||||
if isinstance(string, unicode):
|
||||
return string
|
||||
else:
|
||||
import unicodedata
|
||||
try:
|
||||
value = unicodedata.normalize('NFKD', unicode(string)).encode('UTF8', 'ignore')
|
||||
|
Loading…
Reference in New Issue
Block a user