Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lime/lime_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def non_word(string):
else:
# with the split_expression as a non-capturing group (?:), we don't need to filter out
# the separator character from the split results.
splitter = re.compile(r'(%s)|$' % split_expression)
splitter = re.compile(r'(%s)' % split_expression)
self.as_list = [s for s in splitter.split(self.raw) if s]
non_word = splitter.match

Expand Down