Skip to content

Commit

Permalink
Disabling gatekeeper (robots.txt) check in feedfinder. This may have …
Browse files Browse the repository at this point in the history
…negative consequences.
  • Loading branch information
samuelclay committed May 19, 2012
1 parent 1a0d1dd commit 8feebca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/feedfinder.py
Expand Up @@ -221,7 +221,7 @@ def isFeed(uri):
protocol = urlparse.urlparse(uri)
if protocol[0] not in ('http', 'https'): return 0
try:
data = _gatekeeper.get(uri)
data = _gatekeeper.get(uri, check=False)
except (KeyError, UnicodeDecodeError):
return False
count = couldBeFeedData(data)
Expand Down

0 comments on commit 8feebca

Please sign in to comment.