documentation-crawler: Exclude privacy page from documentation checking

This commit is contained in:
K.Kanakhin 2016-12-19 11:20:22 +06:00 committed by Tim Abbott
parent a57752d158
commit 589ae27190
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ class HelpDocumentationSpider(BaseDocumentationSpider):
name = "help_documentation_crawler"
start_urls = ['http://localhost:9981/help']
deny_domains = [] # type: List[str]
deny = ['/privacy']
def _is_external_url(self, url):
# type: (str) -> bool