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
Post a Comment