1
0
Fork 0

Merge pull request #16 from ZhilinS/patch-1

A little fix to upload.py
This commit is contained in:
Ash Wilson 2017-05-18 10:06:27 -04:00 committed by GitHub
commit 20b1737876
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def main():
def get_current_emoji_list(session):
r = session.get(session.url)
r.raise_for_status()
x = re.findall("data-emoji-name=\"(.*)\"", r.text)
x = re.findall("data-emoji-name=\"(.*?)\"", r.text)
return x