Kaydet (Commit) b5d1392d authored tarafından Tim Peters's avatar Tim Peters

Fix the fix (my error -- hasty pasty).

üst a29b6222
...@@ -119,7 +119,7 @@ class async_chat (asyncore.dispatcher): ...@@ -119,7 +119,7 @@ class async_chat (asyncore.dispatcher):
# 3) end of buffer does not match any prefix: # 3) end of buffer does not match any prefix:
# collect data # collect data
terminator_len = len(terminator) terminator_len = len(terminator)
index = ac_in_buffer.find (self.terminator) index = self.ac_in_buffer.find(terminator)
if index != -1: if index != -1:
# we found the terminator # we found the terminator
if index > 0: if index > 0:
......
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