]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fix windows build
authorrobk-tahoe <robk-tahoe@allmydata.com>
Wed, 23 Jan 2008 22:17:27 +0000 (15:17 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Wed, 23 Jan 2008 22:17:27 +0000 (15:17 -0700)
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.

windows/depends.py

index 937d96be22ba84a6f2c345ffffe6e7f0fe714d44..97e82d9794a13b14f68b5d3cdd2a59602e21ad47 100644 (file)
@@ -6,8 +6,11 @@ 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,
     ]