chiark / gitweb /
py/rmcr.py: More useful diagnostics for uncaught exceptions.
[tripe] / py / tripe.py.in
index d158d1f556efa8319344a9646919f0a78349ac6b..e88f379f07a43fd8768b1f8f50f5f5c6166f3b66 100644 (file)
@@ -31,7 +31,7 @@ implementing services.
 Rather than end up in lost in a storm of little event-driven classes, or a
 morass of concurrent threads, the module uses coroutines to present a fairly
 simple function call/return interface to potentially long-running commands
-which must run without blocking the main process.  It sassumes a coroutine
+which must run without blocking the main process.  It assumes a coroutine
 module presenting a subset of the `greenlet' interface: if actual greenlets
 are available, they are used; otherwise there's an implementation in terms of
 threads (with lots of locking) which will do instead.
@@ -139,6 +139,7 @@ PACKAGE = "@PACKAGE@"
 VERSION = "@VERSION@"
 
 tripesock = OS.environ.get('TRIPESOCK', OS.path.join(socketdir, 'tripesock'))
+peerdb = OS.environ.get('TRIPEPEERDB', 'peers.cdb')
 
 ###--------------------------------------------------------------------------
 ### Connection to the server.