Mike Mabey wrote: > Nope, I didn't miss anything. Still get the same error message.
You are commenting out the lines, but the lines are still being executed in the compiled app. Impossible, so something else is going on. Ideas: + You have dabo in 2 places, and you changed the dabo in the non-active place. Open an interpreter, and type: import dabo print dabo.__file__ + You changed dabo, and it reflected, but some other errors prevented py2exe from completing, so you are actually executing the prior exe. Check the timestamps. Make sure py2exe is completing. + You changed the correct dabo file (the dSizerMixin.py file) but permissions or some other issue is keeping python from being able to recompile the .pyc or .pyo. Check the timestamps of dSizerMixin.py* and make sure the .pyc or .pyo timestamp is greater than the .py timestamp. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
