From: Jack Jansen Date: Sun, 24 Sep 2000 22:00:11 +0000 (+0000) Subject: Handle the ****/**** appleevent wildcard when called as a main program, so that it... X-Git-Tag: v2.0b2~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55a0bde2903e12b511c4ebb12d64547dea6d57cb;p=python Handle the ****/**** appleevent wildcard when called as a main program, so that it becomes a handy debugging tool (BuildApplet, copy aete resource, apply applescript to it). --- diff --git a/Mac/Lib/lib-toolbox/MiniAEFrame.py b/Mac/Lib/lib-toolbox/MiniAEFrame.py index 3077150483..31e68b638a 100644 --- a/Mac/Lib/lib-toolbox/MiniAEFrame.py +++ b/Mac/Lib/lib-toolbox/MiniAEFrame.py @@ -176,7 +176,7 @@ class _Test(AEServer, MiniApplication): AEServer.__init__(self) self.installaehandler('aevt', 'oapp', self.open_app) self.installaehandler('aevt', 'quit', self.quit) - self.installaehandler('aevt', '****', self.other) + self.installaehandler('****', '****', self.other) self.mainloop() def quit(self, **args):