From 77b5828cf0220e8f366daf16df987c101a383da1 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 20 Feb 1995 15:49:27 +0000 Subject: Always set type to APPL --- Mac/mkapplet.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Mac/mkapplet.py b/Mac/mkapplet.py index b8591aa..a99effa 100644 --- a/Mac/mkapplet.py +++ b/Mac/mkapplet.py @@ -99,12 +99,11 @@ def process(template, filename): dest.close() tmpl.close() - # Copy the creator and type of the template to the destination - # unless it already has one - + # Copy the creator of the template to the destination + # unless it already has one. Set type to APPL tctor, ttype = MacOS.GetCreatorAndType(template) ctor, type = MacOS.GetCreatorAndType(destname) - if type in undefs: type = ttype + if type in undefs: type = 'APPL' if ctor in undefs: ctor = tctor MacOS.SetCreatorAndType(destname, ctor, type) -- cgit v0.12