From: Just van Rossum Date: Mon, 13 Jan 2003 23:30:04 +0000 (+0000) Subject: make sure Info.plist has a CFBundleIdentifier entry X-Git-Tag: v2.3c1~2461 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9896ea24f9dd0ad895f2095b5680fafc901fea6f;p=python make sure Info.plist has a CFBundleIdentifier entry --- diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py index 749d85104b..45642bda1f 100755 --- a/Lib/plat-mac/bundlebuilder.py +++ b/Lib/plat-mac/bundlebuilder.py @@ -127,6 +127,8 @@ class BundleBuilder(Defaults): else: self.creator = "????" plist.CFBundleSignature = self.creator + if not hasattr(plist, "CFBundleIdentifier"): + plist.CFBundleIdentifier = self.name def build(self): """Build the bundle."""