summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-01-24 11:35:43 +0100
committeremkael <emkael@tlen.pl>2018-01-24 11:35:43 +0100
commit178b61aae171b6e0052cfde96ac7957df9e89964 (patch)
tree12b8ca0b7d178a46f41b767ac56d9e2f2857e5da /bin
parent3c7dddf36276bf244249e4b733763cb1589b083f (diff)
Emoji list updates
Diffstat (limited to 'bin')
-rw-r--r--bin/emoji-list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emoji-list.py b/bin/emoji-list.py
index 81b73ea..31ba4b1 100644
--- a/bin/emoji-list.py
+++ b/bin/emoji-list.py
@@ -7,7 +7,7 @@ dictionary = {}
for emoji in emoji_list:
character = ''.join([unichr(int(nibble, 16)) for nibble in emoji['unified'].split('-')])
name = emoji['name'].replace(' ', '_') if emoji['name'] else emoji['short_name'].upper().replace('-', '_')
- dictionary[character] = ' <%s> ' % (name)
+ dictionary[character] = ' [%s] ' % (name)
json.dump(dictionary, file(os.path.join(
os.path.dirname(os.path.realpath(__file__)),