[Pythonmac-SIG] made app using py2app, can't pass arguments properly

2011-01-02 Thread Ian McLean
Hi, I'm new to python/py2app. My original python script accepts arguments as such: python merge.py -o outfile.txt - i infile1.txt infile2.txt Once I create the .app from py2app using argv emulation this no longer works and I get the following feedback: new-host:dist Ian$ merge -o outfile.txt -

Re: [Pythonmac-SIG] made app using py2app, can't pass arguments properly

2011-01-02 Thread Ned Deily
In article <[email protected]>, Ian McLean wrote: > I'm new to python/py2app. My original python script accepts arguments as > such: > > python merge.py -o outfile.txt - i infile1.txt infile2.txt > > Once I create the .app from py2app using argv emulation this no