py2exe -i list

Thomas Heller thomas.heller at ion-tof.com
Thu Jun 7 11:14:29 EDT 2001


"John" <john.thai at dspfactory.com> wrote in message news:hOMT6.246185$Z2.2812230 at nnrp1.uunet.ca...
> Hi,
>
>     What is the syntax for the -l option for py2exe?  When I try :
>
>     python setup.py py2exe -i "foo.lib.x"
>
>     This works.  But when I add another module like so:
>
>     python setup.py py2exe -i "foo.lib.x, foo.lib.y"
>
>     It complains that there is no module named foo....
>
You cannot (currently) use spaces in this list.
Written this way it should work:

python setup.py py2exe -i "foo.lib.x,foo.lib.y"

Thomas





More information about the Python-list mailing list