mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
distroinstaller: Fix https:// installs
This commit is contained in:
parent
93dde44cf0
commit
95f8b4c6b0
@ -43,8 +43,8 @@ def _is_url(conn, url):
|
||||
else:
|
||||
return False
|
||||
|
||||
return (url.startswith("http://") or url.startswith("ftp://") or
|
||||
url.startswith("nfs:"))
|
||||
return (url.startswith("http://") or url.startswith("https://") or
|
||||
url.startswith("ftp://") or url.startswith("nfs:"))
|
||||
|
||||
|
||||
def _sanitize_url(url):
|
||||
|
Loading…
Reference in New Issue
Block a user