On 2007-09-07, imageguy <[EMAIL PROTECTED]> wrote:

> Note that every thing works fine with this and creates an exe
> program called "myprogram.exe"
>
> I would like to setup program to create an output called;
> "MyBestProgram.exe"
>
> IS that at all possible ?

ADD this to the end of your script:

import os
os.rename('dist/myprogram.exe','dist/MyBestProgram.exe')

-- 
Grant Edwards                   grante             Yow! Zippy's brain cells
                                  at               are straining to bridge
                               visi.com            synapses ...
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to