mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-12 16:19:48 +03:00
ci: wiki: Use https in URLs
Part-of: https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/6719
This commit is contained in:
parent
947b2d6bba
commit
76b33cdb15
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ def get_wiki_devices_html(path: Path | None) -> dict[str, str]:
|
|||
content = handle.read()
|
||||
else:
|
||||
# Download wiki page
|
||||
url = "http://wiki.postmarketos.org/wiki/Devices"
|
||||
url = "https://wiki.postmarketos.org/wiki/Devices"
|
||||
with urllib.request.urlopen(url) as f:
|
||||
content = f.read().decode("utf-8")
|
||||
|
||||
|
@ -55,7 +55,7 @@ def get_wiki_devices_html(path: Path | None) -> dict[str, str]:
|
|||
def get_wiki_renamed_devices_html() -> str:
|
||||
""":returns: HTML of the page"""
|
||||
# Download wiki page
|
||||
url = "http://wiki.postmarketos.org/wiki/Renamed_Devices"
|
||||
url = "https://wiki.postmarketos.org/wiki/Renamed_Devices"
|
||||
with urllib.request.urlopen(url) as f:
|
||||
res: bytes = f.read()
|
||||
return res.decode("utf-8")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue