Skip to content

Commit

Permalink
Fix code indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Vartan Benohanian <[email protected]>
  • Loading branch information
vartanbeno committed Dec 4, 2018
1 parent ae1a11a commit f820f71
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/classes/spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ class ConcordiaSpider(CrawlSpider):
"""
name = "ir"
rules = (
Rule(LinkExtractor(
deny_domains=["facebook.com", "twitter.com", "youtube.com", "google.com", "stm.info", "apple.com"],
deny=[".*/fr/.*", ".*concordia.ca/maps/.*"]),
Rule(
LinkExtractor(
deny_domains=["facebook.com", "twitter.com", "youtube.com", "google.com", "stm.info", "apple.com"],
deny=[".*/fr/.*", ".*concordia.ca/maps/.*"]
),
callback="parse_item",
follow=True
),
Expand Down

0 comments on commit f820f71

Please sign in to comment.