diff options
Diffstat (limited to 'Doc/libhttplib.tex')
-rw-r--r-- | Doc/libhttplib.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/libhttplib.tex b/Doc/libhttplib.tex index 7671ab3..ca5c673 100644 --- a/Doc/libhttplib.tex +++ b/Doc/libhttplib.tex @@ -122,7 +122,7 @@ Here is an example session: >>> errcode, errmsg, headers = h.getreply() >>> print errcode # Should be 200 >>> f = h.getfile() ->>> data f.read() # Get the raw HTML +>>> data = f.read() # Get the raw HTML >>> f.close() >>> \end{verbatim}\ecode |