Fix some name errors in Mac modules.

This commit is contained in:
Georg Brandl 2010-02-06 23:54:43 +00:00
parent 7e1902bced
commit 1f6176e794
3 changed files with 4 additions and 3 deletions

View file

@ -432,7 +432,7 @@ class AppBuilder(BundleBuilder):
pass
elif self.mainprogram is not None:
self.name = os.path.splitext(os.path.basename(self.mainprogram))[0]
elif executable is not None:
elif self.executable is not None:
self.name = os.path.splitext(os.path.basename(self.executable))[0]
if self.name[-4:] != ".app":
self.name += ".app"