menu fixes, inlines update, stickers pack

This commit is contained in:
ingvar1995 2016-06-20 23:25:35 +03:00
parent fa5b77fd2d
commit 3936f652e9
7 changed files with 29 additions and 28 deletions

View file

@ -85,6 +85,6 @@ def sticker_loader():
for key in keys:
path = d + key + '/'
files = filter(lambda f: f.endswith('.png'), os.listdir(path))
files = map(lambda f: path + f, files)
files = map(lambda f: unicode(path + f), files)
result.extend(files)
return result