mirror of
https://github.com/munki/munki.git
synced 2026-01-05 22:20:00 -06:00
Fix string concatenation of MunkiDownloadError("Insufficient disk space to download and install %s")
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user