Skip to content

Commit

Permalink
fix console output
Browse files Browse the repository at this point in the history
  • Loading branch information
kiilas committed Oct 31, 2018
1 parent bffe173 commit 5bd257a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orxport.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def main():
log.out(f'{len(m.emoji)} emoji defined', 33, 4)
filtered_emoji = [e for e in m.emoji if emoji.match(e, emoji_filter)]
if emoji_filter:
log.out(f'{len(filtered_emoji)} / {len(m.emoji)} emoji match\
filter', 34, 4)
log.out(f'{len(filtered_emoji)} / {len(m.emoji)} '
f'emoji match filter', 34, 4)
if json_out:
jsonutils.write_emoji(filtered_emoji, json_out)
elif web_out:
Expand Down

0 comments on commit 5bd257a

Please sign in to comment.