From 731dbfadb993477fd63f003b0dab22787104407e Mon Sep 17 00:00:00 2001 From: dcoobs <12276948+dcoobs@users.noreply.github.com> Date: Tue, 16 Apr 2019 13:34:31 -0500 Subject: [PATCH] Fix output typo in manifestutils.py (#929) --- code/client/munkilib/updatecheck/manifestutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/munkilib/updatecheck/manifestutils.py b/code/client/munkilib/updatecheck/manifestutils.py index d8e9a971..cd04f042 100644 --- a/code/client/munkilib/updatecheck/manifestutils.py +++ b/code/client/munkilib/updatecheck/manifestutils.py @@ -275,7 +275,7 @@ def remove_from_selfserve_section(itemname, section): """Remove the given itemname from the self-serve manifest's managed_uninstalls list""" display.display_debug1( - "Removing %s from SelfSeveManifest's %s...", itemname, section) + "Removing %s from SelfServeManifest's %s...", itemname, section) selfservemanifest = os.path.join( prefs.pref('ManagedInstallDir'), 'manifests', 'SelfServeManifest') if not os.path.exists(selfservemanifest):