mirror of
https://github.com/munki/munki.git
synced 2026-04-23 04:59:17 -05:00
Edit Fix string concatenation of "No %s in item info" MunkiDownloadError
This commit is contained in:
@@ -800,7 +800,7 @@ def download_installeritem(item_pl, installinfo, uninstalling=False):
|
||||
location = item_pl.get(download_item_key)
|
||||
if not location:
|
||||
raise fetch.MunkiDownloadError(
|
||||
"No %s in item info.", download_item_key)
|
||||
"No %s in item info." % download_item_key)
|
||||
|
||||
# allow pkginfo preferences to override system munki preferences
|
||||
downloadbaseurl = item_pl.get('PackageCompleteURL') or \
|
||||
|
||||
Reference in New Issue
Block a user