<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE></TITLE>
<META content="text/html; charset=us-ascii" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18904"></HEAD>
<BODY><!-- Converted from text/plain format -->
<P><FONT size=2 face=Arial>Hi,<BR><BR>I created my first py2exe windows exe, and 
when it's run, I see on the console:<BR><BR>$ 
./svm_ts_tool_in_progress.exe<BR><FONT color=#ff0000>11:49:32: Debug: 
src/helpers.cpp(140): 'CreateActCtx' failed with error 0x0000007b (the filename, 
directory name, or volume label syntax is incorrect.).</FONT><BR><BR>This is a 
non-fatal error and the application continues to run.</FONT></P>
<P><FONT size=2 face=Arial>I googled, but did not find a way to eliminate this 
Debug message.</FONT></P>
<P><FONT size=2 face=Arial>Could you suggest how to eliminate this message 
?</FONT></P>
<P><FONT size=2 face=Arial>Thanks,<BR>Ron.</FONT><FONT size=2><BR><FONT 
color=#ff00ff size=3 face=Arial><BR></FONT>
<HR>
</P>
<P><FONT face="Courier New"><FONT size=3 
face=Arial><STRONG><U>Notes:<BR></U></STRONG></FONT><BR>$ python -V<BR>Python 
2.6.4</FONT></P>
<P><FONT face="Courier New">$ cat setup.py <BR>#!/usr/bin/env python</FONT></P>
<P><FONT face="Courier New">from distutils.core import setup<BR>import 
py2exe<BR>from glob import glob</FONT></P>
<P><FONT face="Courier New">"""<BR>data_files = [("Microsoft.VC90.CRT", 
glob(r'C:\Program Files\HHD Software\Hex Editor 
Neo\Microsoft.VC90.CRT\*.*'))]<BR>icon_files = [("icons", 
glob(r'c:\views\cc_view\TS_svm_ts_tool\svm_ts_tool\*.gif'))]<BR>"""</FONT></P>
<P><FONT face="Courier New">file_list = []<BR>for i in 
glob(r'c:\views\cc_view\TS_svm_ts_tool\svm_ts_tool\*.gif'):<BR>    
file_list.append(i)</FONT></P>
<P><FONT face="Courier New">data_files = [("data", file_list)]</FONT></P>
<P><FONT face="Courier New">setup(<BR>    data_files=data_files 
<BR>)</FONT></P>
<P><FONT face="Courier New">setup(<BR>    
console=["svm_ts_tool_in_progress.py"],<BR>    
zipfile=None,<BR>    options={ "py2exe" 
:<BR>               
{    "optimize" : 
1<BR>               
}<BR>              
}<BR>)<BR></FONT></P></FONT></BODY></HTML>