
January 19th, 2004, 05:56 AM
|
 |
Mini me.
|
|
Join Date: Nov 2003
Location: Cambridge, UK
|
|
Hi Pabloj,
I haven't tested  this but I looked at the code....
The pywintypes module actually replaces references to itself with a link to a dll called pywintypesXX.dll Where XX is the python version. Unless Py2exe handles this as a special case it will not know how to include the dll.
I suggest the solution will be to either manually copy pywintypes22.dll to the directory of your program or you can include it in the list of files of your py2exe script.
Code:
setup(name="hylafaxutil", scripts=["hfaxcom"],
data_files = [(r"location_of_dll",[pywintypes22.dll,])]
)
You never know.. 
Grim:
Last edited by Grim Archon : January 19th, 2004 at 05:59 AM.
|