diff --git a/code/client/munkilib/processes.py b/code/client/munkilib/processes.py index 2a94721f..7a9ba91b 100644 --- a/code/client/munkilib/processes.py +++ b/code/client/munkilib/processes.py @@ -106,7 +106,7 @@ def blocking_applications_running(pkginfoitem): # from 'installs' list if it exists appnames = [os.path.basename(item.get('path')) for item in pkginfoitem.get('installs', []) - if item['type'] == 'application'] + if item.get('type') == 'application'] display.display_debug1("Checking for %s" % appnames) running_apps = [appname for appname in appnames