mirror of https://github.com/python/cpython.git
Oops, the -psn stuff is in argv[1], of course.
This commit is contained in:
parent
21ed16acbe
commit
a9454e21a7
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue