Skip to content
This repository has been archived by the owner on Oct 18, 2019. It is now read-only.

Commit

Permalink
fixing bug in URL extracting regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Swanson committed Jun 8, 2010
1 parent d0a0c95 commit c343ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StackTracker.py
Expand Up @@ -505,7 +505,7 @@ def extractDetails(self, url):
(?P<site>(?:[A-Za-z\.])*\.[A-Za-z]*)
/.*?
(?P<id>[0-9]+)
/.*""", re.VERBOSE)
/?.*""", re.VERBOSE)
match = regex.match(url)
if match is None:
return None
Expand Down

0 comments on commit c343ad3

Please sign in to comment.