summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/lib/libasynchat.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libasynchat.tex b/Doc/lib/libasynchat.tex
index eea4f18..79d4c65 100644
--- a/Doc/lib/libasynchat.tex
+++ b/Doc/lib/libasynchat.tex
@@ -235,7 +235,7 @@ class http_request_handler(asynchat.async_chat):
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")