[tor-commits] [flashproxy/master] Fix further syntax error in f23dc0aa, thanks rransom.
dcf at torproject.org
dcf at torproject.org
Wed Jun 8 20:55:45 UTC 2011
commit f1f8f33074f2d03dced8676dcfb213fb5b9262af
Author: David Fifield <david at bamsoftware.com>
Date: Wed Jun 8 13:53:33 2011 -0700
Fix further syntax error in f23dc0aa, thanks rransom.
---
connector.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/connector.py b/connector.py
index c2c648e..27fff61 100755
--- a/connector.py
+++ b/connector.py
@@ -386,7 +386,7 @@ while True:
remotes.remove(fd)
fd.close()
else:
- log(u"Data from unconnected remote %s (%d bytes)." % format_addr(fd.getpeername()), len(data))
+ log(u"Data from unconnected remote %s (%d bytes)." % (format_addr(fd.getpeername()), len(data)))
fd.buf += data
if len(fd.buf) >= UNCONNECTED_BUFFER_LIMIT:
log(u"Refusing to buffer more than %d bytes from local %s." % (UNCONNECTED_BUFFER_LIMIT, format_addr(fd.getpeername())))
More information about the tor-commits
mailing list