Skip to content

Commit

Permalink
Fix space symbols striping.
Browse files Browse the repository at this point in the history
  • Loading branch information
bevesce committed Oct 8, 2018
1 parent 7a9eb31 commit cebb761
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified Unicode Symbols Search.alfredworkflow
Binary file not shown.
2 changes: 1 addition & 1 deletion unicode_symbols_search/unicode_symbols_search.py
Expand Up @@ -61,7 +61,7 @@ def get_symbols(path=None):

def parse_symbol(line):
split = line.split('| ')
symbol = split[0].strip()
symbol = split[0][1:]
description = (' '.join(split[1:]).lower()).split('# ')
main_description = description[0]
hidden_description = ' '.join(description[1:])
Expand Down

0 comments on commit cebb761

Please sign in to comment.