mirror of
https://github.com/munki/munki.git
synced 2026-04-27 16:05:24 -05:00
Fix a too-long line in updatecheck.py
git-svn-id: http://munki.googlecode.com/svn/trunk@864 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
@@ -1264,7 +1264,8 @@ def processOptionalInstall(manifestitem, cataloglist, installinfo):
|
||||
iteminfo['needs_update'] = not isInstalled(item_pl)
|
||||
iteminfo['uninstallable'] = item_pl.get('uninstallable', False)
|
||||
if (not iteminfo['installed']) or (iteminfo.get('needs_update')):
|
||||
iteminfo['installer_item_size'] = item_pl.get('installer_item_size', 0)
|
||||
iteminfo['installer_item_size'] = \
|
||||
item_pl.get('installer_item_size', 0)
|
||||
iteminfo['installed_size'] = item_pl.get('installer_item_size',
|
||||
iteminfo['installer_item_size'])
|
||||
if not enoughDiskSpace(item_pl,
|
||||
|
||||
Reference in New Issue
Block a user