diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-11-05 08:46:27 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-11-05 08:46:27 +0100 |
commit | 5f8af252e87735f7577cc985cbe6ff6f1b3b56f8 (patch) | |
tree | 544bfc4b412f3e3f892242c75d1e46f69d59c64b /doc/tools | |
parent | 935537c53191e7430a77949eab6b1e50841c19bd (diff) |
doc: Use HTTPS for docs.godotengine.org and point to latest branch
Fixes #23509.
Diffstat (limited to 'doc/tools')
-rw-r--r-- | doc/tools/doc_status.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tools/doc_status.py b/doc/tools/doc_status.py index ab74c0b9d6..4bb4342d5f 100644 --- a/doc/tools/doc_status.py +++ b/doc/tools/doc_status.py @@ -229,11 +229,11 @@ class ClassStatus: output['overall'] = (description_progress + items_progress).to_colored_string('{percent}%', '{pad_percent}{s}') if self.name.startswith('Total'): - output['url'] = color('url', 'http://docs.godotengine.org/en/latest/classes/') + output['url'] = color('url', 'https://docs.godotengine.org/en/latest/classes/') if flags['s']: output['comment'] = color('part_good', 'ALL OK') else: - output['url'] = color('url', 'http://docs.godotengine.org/en/latest/classes/class_{name}.html'.format(name=self.name.lower())) + output['url'] = color('url', 'https://docs.godotengine.org/en/latest/classes/class_{name}.html'.format(name=self.name.lower())) if flags['s'] and not flags['g'] and self.is_ok(): output['comment'] = color('part_good', 'ALL OK') |