Skip to content

Commit

Permalink
Remove a syntax error in the example, spotted by Walter Hofman.
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenweb committed Aug 4, 2002
1 parent d6359c5 commit c8389c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/lib/libasynchat.tex
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ \subsection{asynchat Example \label{asynchat-example}}
def found_terminator(self):
if self.reading_headers:
self.reading_headers = False
self.parse_headers("".join(self.ibuffer)
self.parse_headers("".join(self.ibuffer))
self.ibuffer = []
if self.op.upper() == "POST":
clen = self.headers.getheader("content-length")
Expand Down

0 comments on commit c8389c9

Please sign in to comment.