--- jstrports.py 2005-10-22 08:08:27.000000000 +0400 +++ jstrports.py.my 2010-12-27 01:47:10.295129168 +0300 @@ -6,7 +6,7 @@ """ A temporary placeholder for client-capable strports, until we sufficient use cases get identified """ -from twisted.application import strports +from twisted.internet.endpoints import _parse def _parseTCPSSL(factory, domain, port): """ For the moment, parse TCP or SSL connections the same """ @@ -22,7 +22,7 @@ def parse(description, factory): - args, kw = strports._parse(description) + args, kw = _parse(description) return (args[0].upper(),) + _funcs[args[0]](factory, *args[1:], **kw) def client(description, factory):