Unescaped -, + and * in regex

This commit is contained in:
B Krishna Chaitanya 2014-06-30 14:38:00 +05:30
parent ef0e192d79
commit add0aea46d

View file

@ -18,7 +18,7 @@ class Entry:
def parse_tags(self):
fulltext = " ".join([self.title, self.body]).lower()
tags = re.findall(r'(?u)([{tags}][\w\+/\-\*#]+)'.format(tags=self.journal.config['tagsymbols']), fulltext, re.UNICODE)
tags = re.findall(r'(?u)([{tags}][-+*#/\w]+)'.format(tags=self.journal.config['tagsymbols']), fulltext, re.UNICODE)
self.tags = tags
return set(tags)