mirror of
https://github.com/munki/munki.git
synced 2026-05-02 10:19:32 -05:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user