Commit e67856e6 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Fix minor typo in regex.

parent 6991d34c
......@@ -83,7 +83,7 @@ def parse_line(p_string):
if project:
result['projects'].append(project.group(1))
context = re.match(r'@(\S*\w+)', word)
context = re.match(r'@(\S*\w)', word)
if context:
result['contexts'].append(context.group(1))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment