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

Second, I don't know how to unzip a .dll, but my dabo/locale folder does
have files and subdirectories.

Third, when I uncomment line 52, I get the errors I listed on my second
posting under this subject.

Mike

On Wed, Jul 2, 2008 at 2:36 PM, Paul McNett <[EMAIL PROTECTED]> wrote:

> Paul McNett wrote:
> > Mike Mabey wrote:
> >> Nate:
> >> http://www.ece.usu.edu/files/setup.py
> >
> > A *quick* glance at that seems to check out.
>
> Actually, you've commented out the line that appends the localedir to
> the locales list. Here's mine:
>
>      42 # locales:
>      43 localeDir = "%s%slocale" % (daboDir, os.sep)
>      44 #locales = [("dabo.locale", (os.path.join(daboDir, "locale",
> "dabo.pot"),))]
>      45 locales = []
>      46 def getLocales(arg, dirname, fnames):
>      47   if ".svn" not in dirname and dirname[-1] != "\\":
>      48     #po_files = tuple(glob.glob(os.path.join(dirname, "*.po")))
>      49     mo_files = tuple(glob.glob(os.path.join(dirname, "*.mo")))
>      50     if mo_files:
>      51       subdir = os.path.join("dabo.locale", dirname[len(arg)+1:])
>      52       locales.append((subdir, mo_files))
>      53 os.path.walk(localeDir, getLocales, localeDir)
>
> In the file you posted, you've commented out line 52.
>
> Paul
>
>
[excessive quoting removed by server]

_______________________________________________
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]

Reply via email to