Skip to content

Commit

Permalink
silly bug that didn't consider the first range of characters
Browse files Browse the repository at this point in the history
  • Loading branch information
lalomartins committed Aug 27, 2013
1 parent 7eddaa3 commit a784c82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uniemoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(self):
self.prop_list = IBus.PropList()
self.table = {}
with open(os.path.join(__base_dir__, 'UnicodeData.txt')) as unicodedata:
_ranges = ranges[::-1]
_ranges = ranges[:]
range = _ranges.pop()
for line in unicodedata.readlines():
if not line.strip(): continue
Expand Down

0 comments on commit a784c82

Please sign in to comment.