Skip to content

Commit

Permalink
fetchers: Fixed critical bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mbr0wn committed Jan 25, 2016
1 parent c282662 commit 26046c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybombs/fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def parse_uri(self, uri):
pass
# No, OK, let's try regexing this guy
for utype in uri_types:
for regex in self.available[utype]:
for regex in self.available[utype].regexes:
if re.match(regex, uri):
return (utype, uri)
# Yeah, whatever, I give up.
Expand Down

0 comments on commit 26046c7

Please sign in to comment.