Skip to content

Commit

Permalink
Fixes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
buckket committed Feb 16, 2016
1 parent 3ef2e13 commit bfe2b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twtxt/mentions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import click

mention_re = re.compile(r'@<(?:(?P<name>\S+?)\s+)?(?P<url>\S+?://.*?)>')
short_mention_re = re.compile(r'@(?P<name>\S+)')
short_mention_re = re.compile(r'@(?P<name>\w+)')


def get_source_by_url(url):
Expand Down

0 comments on commit bfe2b81

Please sign in to comment.