From e69a000dc78015fc74fe82e730c29a0d6bf390d4 Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Thu, 21 Apr 2016 17:43:04 -0700 Subject: [PATCH] Fix improper logging call leading to extra log files when using removepackages to remove items --- 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 edb64cef..c916f4d9 100644 --- a/code/client/munkilib/installer.py +++ b/code/client/munkilib/installer.py @@ -1005,7 +1005,7 @@ def processRemovals(removallist, only_unattended=False): munkicommon.display_error(message) else: munkicommon.log( - "Uninstall of %s was successful.", display_name) + "Uninstall of %s was successful." % display_name) elif uninstallmethod.startswith("Adobe"): retcode = adobeutils.doAdobeRemoval(item)