tcprelay.py: wrap long line for PEP8

This commit is contained in:
Felix Yan 2014-11-02 00:41:29 +08:00
parent 833c98e114
commit d971cb44a8
1 changed files with 2 additions and 1 deletions

View File

@ -261,7 +261,8 @@ class TCPRelayHandler(object):
if header_result is None:
raise Exception('can not parse header')
addrtype, remote_addr, remote_port, header_length = header_result
logging.info('connecting %s:%d' % (remote_addr.decode('utf-8'), remote_port))
logging.info('connecting %s:%d' % (remote_addr.decode('utf-8'),
remote_port))
self._remote_address = (remote_addr, remote_port)
# pause reading
self._update_stream(STREAM_UP, WAIT_STATUS_WRITING)