summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Lib/argvemulator.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Mac/Lib/argvemulator.py b/Mac/Lib/argvemulator.py
index 032a167..2df597a 100644
--- a/Mac/Lib/argvemulator.py
+++ b/Mac/Lib/argvemulator.py
@@ -17,8 +17,11 @@ class ArgvCollector:
def __init__(self):
self.quitting = 0
self.ae_handlers = {}
+ # Remove the funny -psn_xxx_xxx argument
+ if sys.argv[0][:4] == '-psn':
+ del sys.argv[0]
self.installaehandler('aevt', 'oapp', self.open_app)
- self.installaehandler('aevt', 'open', self.open_file)
+ self.installaehandler('aevt', 'odoc', self.open_file)
def installaehandler(self, classe, type, callback):
AE.AEInstallEventHandler(classe, type, self.callback_wrapper)