Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update __init__.py
  • Loading branch information
ralsina committed May 9, 2017
1 parent d67d664 commit af7ff6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/shortcode/emoji/__init__.py
Expand Up @@ -41,6 +41,6 @@ def handler(self, name, filename=None, site=None, data=None, lang=None, post=Non
output = '''<span class="emoji">{}</span>'''.format(TABLE[name])
except KeyError:
LOGGER.warning('Unknown emoji {}'.format(name))
output = '''<span class="emoji, error">{}</span>'''.format(name)
output = '''<span class="emoji error">{}</span>'''.format(name)

return output, []

0 comments on commit af7ff6c

Please sign in to comment.