Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29b622 commit b5d1392Copy full SHA for b5d1392
1 file changed
Lib/asynchat.py
@@ -119,7 +119,7 @@ def handle_read (self):
119
# 3) end of buffer does not match any prefix:
120
# collect data
121
terminator_len = len(terminator)
122
- index = ac_in_buffer.find (self.terminator)
+ index = self.ac_in_buffer.find(terminator)
123
if index != -1:
124
# we found the terminator
125
if index > 0:
0 commit comments