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 -
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