Merge branch 'develop' of github.com:frappe/frappe into compress-files

This commit is contained in:
Gavin D'souza 2020-10-05 14:08:48 +05:30
commit dc21722935

View file

@ -4,7 +4,7 @@ from urllib.parse import urlparse
docs_repos = [
"frappe_docs"
"frappe_docs",
"erpnext_documentation",
"erpnext_com",
"frappe_io",
@ -17,7 +17,7 @@ def uri_validator(x):
def docs_link_exists(body):
for line in body.splitlines():
for word in line:
for word in line.split():
if word.startswith('http') and uri_validator(word):
parsed_url = urlparse(word)
if parsed_url.netloc == "github.com":