commit 19c111cdabd70c3c69933e09b8efe06bb679d844 Author: Isis Lovecruft isis@torproject.org Date: Tue Jan 23 21:03:35 2018 +0000
Fix problem with "missing resources" on production moat server.
* FIXES #24432 https://bugs.torproject.org/24432. --- bridgedb/distributors/moat/server.py | 1 + 1 file changed, 1 insertion(+)
diff --git a/bridgedb/distributors/moat/server.py b/bridgedb/distributors/moat/server.py index eb356fe..f4bff69 100644 --- a/bridgedb/distributors/moat/server.py +++ b/bridgedb/distributors/moat/server.py @@ -748,6 +748,7 @@ def addMoatServer(config, distributor):
root = CustomErrorHandlingResource() root.putChild("meek", meek) + root.putChild("moat", moat)
site = Site(root) site.displayTracebacks = False
tor-commits@lists.torproject.org