help docs: Fix a sorta buggy URL test.

This commit is contained in:
Tim Abbott 2018-04-05 13:01:51 -07:00
parent d7658bbec5
commit ed5b374ffa
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,9 @@ class HelpDocumentationSpider(UnusedImagesLinterSpider):
name = "help_documentation_crawler"
start_urls = ['http://localhost:9981/help']
deny_domains = [] # type: List[str]
deny = ['/privacy']
deny = ['/privacy',
# Ignored because scrapy seems to not process relatively URLs with ../ properly.
'[.][.]/']
images_path = "static/images/help"