mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 13:33:09 +00:00
8661c94f17
having changed the web template retrieval to use nevow.util.resource_filename (and hence through pkg_resources when available) that adds a requirement that py2exe be given a hint to induce it to include the allmydata.web module so that it becomes importable.
17 lines
647 B
Python
17 lines
647 B
Python
|
|
# nevow requires all these for its voodoo module import time adaptor registrations
|
|
from nevow import accessors, appserver, static, rend, url, util, query, i18n, flat
|
|
from nevow import guard, stan, testutil, context
|
|
from nevow.flat import flatmdom, flatstan, twist
|
|
from formless import webform, processors, annotate, iformless
|
|
from decimal import Decimal
|
|
|
|
import allmydata.web
|
|
|
|
# junk to appease pyflakes's outrage at py2exe's needs
|
|
junk = [
|
|
accessors, appserver, static, rend, url, util, query, i18n, flat, guard, stan, testutil,
|
|
context, flatmdom, flatstan, twist, webform, processors, annotate, iformless, Decimal,
|
|
allmydata,
|
|
]
|