Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci_scripts/generate_xrefmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from sphinx.ext.intersphinx import read_inventory

EXTERNAL_LINKS = ['https://docs.python.org/3.5/',
'http://msrestazure.readthedocs.io/en/latest/',
'http://msrest.readthedocs.io/en/latest/']
'https://msrestazure.readthedocs.io/en/latest/',
'https://msrest.readthedocs.io/en/latest/']
xref_map = []

for external_Link in EXTERNAL_LINKS:
Expand Down
2 changes: 1 addition & 1 deletion ci_scripts/postprocess_toc_yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def rewrite_yml(data):

with open("toc.yml", 'r') as stream:
try:
data_loaded = yaml.load(stream)
data_loaded = yaml.safe_load(stream)
for node in data_loaded:
if 'name' in node:
if node['name'].startswith('azure.') and node['name'] not in skipped_level2_packages:
Expand Down