Oops, the -psn stuff is in argv[1], of course.

This commit is contained in:
Jack Jansen 2002-08-02 14:54:46 +00:00
parent 21ed16acbe
commit a9454e21a7
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ 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]
if len(sys.argv) > 1 and sys.argv[1][:4] == '-psn':
del sys.argv[1]
self.installaehandler('aevt', 'oapp', self.open_app)
self.installaehandler('aevt', 'odoc', self.open_file)