treewide: use https for github URIs

This commit is contained in:
Pavol Rusnak
2021-04-17 17:59:08 +02:00
parent d89513b96a
commit 29bb19258a
9 changed files with 9 additions and 9 deletions
@@ -32,7 +32,7 @@ def prefetch_github(owner: str, repo: str, ref: str) -> str:
def get_radare2_rev() -> str:
feed_url = "http://github.com/radareorg/radare2/releases.atom"
feed_url = "https://github.com/radareorg/radare2/releases.atom"
with urllib.request.urlopen(feed_url) as resp:
tree = ET.fromstring(resp.read())
releases = tree.findall(".//{http://www.w3.org/2005/Atom}entry")