Fix to function to get available space on startup disk.

git-svn-id: http://munki.googlecode.com/svn/trunk@134 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
Greg Neagle
2009-07-27 18:26:36 +00:00
parent 9035f9d7aa
commit 5228d462aa
+1 -1
View File
@@ -733,7 +733,7 @@ def getAvailableDiskSpace(volumepath="/"):
if "FreeSpace" in pl:
freespace = pl["FreeSpace"]
return int(freespace/1024)
return int(freespace/1024)
# Yikes
return 0