Skip to content

Commit f078c9e

Browse files
committed
actually return the boolean
1 parent d209dd5 commit f078c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def download(path, url, probably_big, verbose):
8989
_download(path, url, probably_big, verbose, False)
9090

9191
def has_wget():
92-
require(["wget", "--version"], exit=False) is not None
92+
return require(["wget", "--version"], exit=False) is not None
9393

9494
def _download(path, url, probably_big, verbose, exception):
9595
# Try to use curl (potentially available on win32

0 commit comments

Comments
 (0)