mirror of
https://github.com/munki/munki.git
synced 2026-04-22 04:28:21 -05:00
Fixed error thrown when warning about insufficient disk space to download and install an installer item.
git-svn-id: http://munki.googlecode.com/svn/trunk@125 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
@@ -557,7 +557,7 @@ def enoughDiskSpace(manifestitem_pl):
|
||||
if availablediskspace > diskspaceneeded:
|
||||
return True
|
||||
else:
|
||||
munkicommon.display_info("There is insufficient disk space to download and install %s.", manifestitem_pl.get('name'))
|
||||
munkicommon.display_info("There is insufficient disk space to download and install %s." % manifestitem_pl.get('name'))
|
||||
munkicommon.display_info(" %sMB needed; %sMB available" % (diskspaceneeded, availablediskspace))
|
||||
return False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user