Update references from HTTP to HTTPS where possible

This commit is contained in:
marvwatson
2017-03-29 05:38:34 -07:00
committed by GitHub
parent f798552cf1
commit 4810aa65a4
16 changed files with 29 additions and 29 deletions

View File

@ -81,7 +81,7 @@ def read_doc(doc):
# Remove icons
contents = re.sub(r'<i class="fa.*?</i>\s*', "", contents)
# Make [...](/links/) absolute
contents = re.sub(r'\((\/.*?\/)\)', r"(http://rclone.org\1)", contents)
contents = re.sub(r'\((\/.*?\/)\)', r"(https://rclone.org\1)", contents)
return contents
def check_docs(docpath):