mirror of
https://github.com/munki/munki.git
synced 2026-05-01 09:49:31 -05:00
Fix string format error for new package references messages
This commit is contained in:
@@ -1005,7 +1005,7 @@ def process_removal(manifestitem, cataloglist, installinfo):
|
||||
# so we only remove packages if we're the last reference to it
|
||||
if pkg in pkgdata['pkg_references']:
|
||||
msg = ('Package %s references are: %s'
|
||||
% pkg, pkgdata['pkg_references'][pkg])
|
||||
% (pkg, pkgdata['pkg_references'][pkg]))
|
||||
display.display_debug1(msg)
|
||||
# record these for possible later use
|
||||
pkg_references_messages.append(msg)
|
||||
|
||||
Reference in New Issue
Block a user