python - PyQt4 - "See the log file for details" error -


i have made application using python , found can use py2exe make executables windows.

the problem library using (xmpppy) produces error

deprecationwarning: md5 module deprecated; use hashlib instead

and when try run executable dialog appears saying this

see logfile 'c:\python26\p2e\myapp\dist\myapp.exe.log' details

any ideas how fix that?

you can try including following lines down import sys

sys.stdout = open(“my_stdout.log”, “w”) sys.stderr = open(“my_stderr.log”, “w”) 

for more information can read this


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

sql server - python to mssql encoding problem -

windows - Python Service Installation - "Could not find PythonClass entry" -