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:
Greg Neagle
2009-07-20 21:58:33 +00:00
parent 03da6d471b
commit 54f869c4d5
+1 -1
View File
@@ -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