Commit a8e3cc67 authored by Barry Warsaw's avatar Barry Warsaw

Sigh, Zope 2.5.1 has a different version of ThreadedAsync which

doesn't put .loop() in the package namespace.  Use the full dotted
path to the function.
parent 4a3cb77d
...@@ -18,9 +18,10 @@ import types ...@@ -18,9 +18,10 @@ import types
from ZEO.zrpc.connection import Connection, Delay from ZEO.zrpc.connection import Connection, Delay
from ZEO.zrpc.log import log from ZEO.zrpc.log import log
import zLOG import zLOG
import ThreadedAsync.LoopCallback
# Export the main asyncore loop # Export the main asyncore loop
loop = asyncore.loop loop = ThreadedAsync.LoopCallback.loop
class Dispatcher(asyncore.dispatcher): class Dispatcher(asyncore.dispatcher):
"""A server that accepts incoming RPC connections""" """A server that accepts incoming RPC connections"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment