From 2e34939a9af0e1e01e1e2a045aef6a6d7783ad89 Mon Sep 17 00:00:00 2001 From: Justin McWilliams Date: Fri, 9 Oct 2015 17:09:23 -0400 Subject: [PATCH] Fix string concatenation of MunkiDownloadError("Insufficient disk space to download and install %s") --- code/client/munkilib/updatecheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/munkilib/updatecheck.py b/code/client/munkilib/updatecheck.py index dc91a9ff..05d99f12 100755 --- a/code/client/munkilib/updatecheck.py +++ b/code/client/munkilib/updatecheck.py @@ -833,7 +833,7 @@ def download_installeritem(item_pl, installinfo, uninstalling=False): if not enoughDiskSpace(item_pl, installinfo['managed_installs'], uninstalling=uninstalling): raise fetch.MunkiDownloadError( - 'Insufficient disk space to download and install %s', pkgname) + 'Insufficient disk space to download and install %s' % pkgname) else: munkicommon.display_detail( 'Downloading %s from %s', pkgname, location)