Hi,
I created my first py2exe windows exe, and when it's run, I see on the console:
$ ./svm_ts_tool_in_progress.exe
11:49:32: Debug: src/helpers.cpp(140): 'CreateActCtx' failed with error
0x0000007b (the filename, directory name, or volume label syntax is incorrect.).
This is a non-fatal error and the application continues to run.
I googled, but did not find a way to eliminate this Debug message.
Could you suggest how to eliminate this message ?
Thanks,
Ron.
________________________________
Notes:
$ python -V
Python 2.6.4
$ cat setup.py
#!/usr/bin/env python
from distutils.core import setup
import py2exe
from glob import glob
"""
data_files = [("Microsoft.VC90.CRT", glob(r'C:\Program Files\HHD Software\Hex
Editor Neo\Microsoft.VC90.CRT\*.*'))]
icon_files = [("icons",
glob(r'c:\views\cc_view\TS_svm_ts_tool\svm_ts_tool\*.gif'))]
"""
file_list = []
for i in glob(r'c:\views\cc_view\TS_svm_ts_tool\svm_ts_tool\*.gif'):
file_list.append(i)
data_files = [("data", file_list)]
setup(
data_files=data_files
)
setup(
console=["svm_ts_tool_in_progress.py"],
zipfile=None,
options={ "py2exe" :
{ "optimize" : 1
}
}
)
--
http://mail.python.org/mailman/listinfo/python-list