Mark Hammond wrote: >> in general, I am having trouble building an exe for an app I >> am trying to >> deliver: uLoop. I got a working exe, but it only works on >> the box I built it >> on. when I run on a clean box, I get this error dialog: >> >> --------------------------- >> Errors occurred >> --------------------------- >> See the logfile >> 'C:\DOCUME~1\josh\dabodev\daboide\wizards\APPWIZ~1\webtest\dis >> t\webtest.exe.log' >> for details >> --------------------------- >> OK >> >> webtest.exe.log only has 2 bytes: cr lf so that isn't much help. >> >> If someone knows how to get a helpful message, that would be grand. > > The only "problem" here is that something wrote to sys.stderr - that simple > fact is enough to trigger that error dialog. The easiest way to fix this > is probably to redirect sys.stderr to your own object - if you like, have > this implementation raise an error, and you should be able to find who is > writing it. >
Bingo. there is some py code that is logging to sys.stderr that I can turn off. There may be some wx things sending warnings to stderr that I can't turn off, and are originating from the wx C code, not python (so pretty much no way to turn them off, I asked the wx list, didn't get much response.) I'll turn off what I can and see what happens. Carl K _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/%(messageid)s
