commit | b5d1392d9236eae981796cb7ae15d8ecd5035ac6 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Thu Apr 05 22:38:32 2001 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Thu Apr 05 22:38:32 2001 +0000 |
tree | 7e31e8b3dd2cd792bbf4aff656bb41b8ed4f4a61 | |
parent | a29b6222fe18ce79c8a16746bcdf2401389e4405 [diff] |
Fix the fix (my error -- hasty pasty).
diff --git a/Lib/asynchat.py b/Lib/asynchat.py index a46c1d4..35f5d1e 100644 --- a/Lib/asynchat.py +++ b/Lib/asynchat.py
@@ -119,7 +119,7 @@ # 3) end of buffer does not match any prefix: # collect data terminator_len = len(terminator) - index = ac_in_buffer.find (self.terminator) + index = self.ac_in_buffer.find(terminator) if index != -1: # we found the terminator if index > 0: