From 801cc39a34ad5bc9bb5dc5fb5f760c60fd91db07 Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Wed, 29 Oct 2014 06:39:18 -0700 Subject: [PATCH] Fix installer.py error calling munkistatus.message() with multiple arguments --- code/client/munkilib/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/munkilib/installer.py b/code/client/munkilib/installer.py index 549f9fe8..dfbe8ca8 100644 --- a/code/client/munkilib/installer.py +++ b/code/client/munkilib/installer.py @@ -1213,7 +1213,7 @@ def run(only_unattended=False): munkistatus.message("Installing 1 item...") else: munkistatus.message( - "Installing %i items...", len(installlist)) + "Installing %i items..." % len(installlist)) munkistatus.detail("") # set indeterminate progress bar munkistatus.percent(-1)