[KERNEL][TEST] Use Python3 method name

git-svn-id: svn://kolibrios.org@9315 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Magomed Kostoev (mkostoevr) 2021-11-25 21:57:16 +00:00
parent dcb708dd09
commit 96cf187d5e

View File

@ -34,7 +34,7 @@ def stage(name, command, mute = False):
def download(link, path):
log(f"Downloading {path}... ", end = "")
urllib.urlretrieve(link, path)
urllib.request.urlretrieve(link, path)
log("Done.")
def tool_exists(name):