From 6161d78304b638c6409cb91a2ea8646ab153e385 Mon Sep 17 00:00:00 2001 From: paolo-projects Date: Fri, 27 Sep 2019 19:32:09 +0200 Subject: [PATCH] Added a missing return instruction in case of error --- gettools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gettools.py b/gettools.py index a883c4c..470be1a 100755 --- a/gettools.py +++ b/gettools.py @@ -146,6 +146,7 @@ def main(): urlretrieve(urlcoretar, convertpath(dest + '/tools/com.vmware.fusion.zip.tar'), reporthook) except: print('Couldn\'t find tools') + return print()