twisted_ex4_xcap_proxy.py fix: actually send the result back to the client

This commit is contained in:
Denis Bilenko
2008-10-24 19:41:39 +07:00
parent c1b6000817
commit 4162abb7e8

View File

@@ -85,7 +85,7 @@ def handler(conn):
try:
for line in conn:
print 'received from %s: %s' % (peer, line)
print perform_request(line)
conn.protocol.transport.write(perform_request(line))
print peer, 'connection done'
except Exception, ex:
print peer, ex