From bb41ba68dd70ef20518fbe7969accaff93c22300 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 5 Jun 2016 10:15:59 +0200 Subject: [PATCH] Tiny fix for CheckExternalCommands --- bootstrapvz/common/tasks/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapvz/common/tasks/host.py b/bootstrapvz/common/tasks/host.py index 7858056..3776c75 100644 --- a/bootstrapvz/common/tasks/host.py +++ b/bootstrapvz/common/tasks/host.py @@ -15,7 +15,7 @@ class CheckExternalCommands(Task): missing_packages = [] for command, package in info.host_dependencies.items(): try: - log_check_call(['type ' + command], shell=True) + log_check_call(['type', command], shell=True) except CalledProcessError: if re.match('^https?:\/\/', package): msg = ('The command `{command}\' is not available, '