mirror of
https://github.com/clockworkpi/launcher.git
synced 2025-12-12 17:58:50 +01:00
alias list_item encode utf8
This commit is contained in:
parent
5a2d662ba2
commit
cf7bcd615c
@ -73,8 +73,8 @@ class ListItem(object):
|
|||||||
|
|
||||||
label_text = os.path.basename(text)
|
label_text = os.path.basename(text)
|
||||||
alias_file = os.path.splitext(text)[0] + ".alias"
|
alias_file = os.path.splitext(text)[0] + ".alias"
|
||||||
if os.path.isfile(alias_file):
|
if os.path.isfile(alias_file.encode("utf8")):
|
||||||
fp = open(alias_file, "r")
|
fp = open(alias_file.encode("utf8"), "r")
|
||||||
alias = fp.read()
|
alias = fp.read()
|
||||||
fp.close()
|
fp.close()
|
||||||
label_text = alias.decode("utf8")
|
label_text = alias.decode("utf8")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user