Commit a9454e21 authored by Jack Jansen's avatar Jack Jansen

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

parent 21ed16ac
......@@ -18,8 +18,8 @@ class ArgvCollector:
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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment