One more reversion to plistlib.readPlist because the NS objects returned by Foundation were making plistlib.writePlist unhappy.

git-svn-id: http://munki.googlecode.com/svn/trunk@154 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
Greg Neagle
2009-07-31 20:18:45 +00:00
parent 320b09bcb2
commit 220070abd2
+1 -1
View File
@@ -355,7 +355,7 @@ def run():
installinfo = os.path.join(managedinstallbase, 'InstallInfo.plist')
if os.path.exists(installinfo):
try:
pl = munkicommon.readPlist(installinfo)
pl = plistlib.readPlist(installinfo)
except:
print >>sys.stderr, "Invalid %s" % installinfo
return -1