Merge branch 'develop' of github.com:frappe/frappe into compress-files
This commit is contained in:
commit
dc21722935
1 changed files with 2 additions and 2 deletions
4
.github/helper/documentation.py
vendored
4
.github/helper/documentation.py
vendored
|
|
@ -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":
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue