Nate Lowrie wrote: > On Wed, Jul 2, 2008 at 2:44 PM, Mike Mabey <[EMAIL PROTECTED]> wrote: >> Wow, thanks Paul for your replies. First, I'm calling setup.py in a Command >> Prompt window by navigating to the directory of setup.py and entering: >> python setup.py py2exe --bundle 1
Try --bundle 3 just for kicks. There was a reason I did it that way instead of --bundle 1, but I can't remember now what it was. >> Second, I don't know how to unzip a .dll, but my dabo/locale folder does >> have files and subdirectories. Rename it to library.zip. >> Third, when I uncomment line 52, I get the errors I listed on my second >> posting under this subject. I'm lazy. Indulge me. Make it easy for me to help you. Errors when running setup.py, or errors running the app? What errors? > Line 52 is commented out in my setup.py files. You will get the > locales when you do the os.path.walk... Not if you never append the value to the list, unless your os.path.walk is doing something else somewhere. After that block do a: print "locales:", locales sys.exit() If it prints [] you know it isn't right. 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]
