From 420d5a129c02a8aa1ed4acbc9e366b1fd7f395fd Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 14 Dec 2009 14:29:20 +0000 Subject: [PATCH] Forgot a close() call --- makepanda/makepanda.py | 1 + 1 file changed, 1 insertion(+) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 184803a879..b2db4ddc5c 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -4811,6 +4811,7 @@ def MakeInstallerOSX(): print >>preflight, "bpfile = open(bash_profile, 'w')" print >>preflight, "bpfile.write(newbpdata)" print >>preflight, "bpfile.close()" + preflight.close() oscmd("chmod +x dstroot/scripts/uninstall16/preflight") oscmd("chmod -R 0775 dstroot/*")