diff options
author | Georg Brandl <georg@python.org> | 2009-01-03 21:31:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-03 21:31:47 (GMT) |
commit | 06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b (patch) | |
tree | 15223833b7a65c16ebd96233baa98d7997399dd9 /Doc/library/xmlrpc.client.rst | |
parent | d509788f98e5ee6ecc638daf3be27493ae74640a (diff) | |
download | cpython-06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b.zip cpython-06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b.tar.gz cpython-06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b.tar.bz2 |
Fix a few remaining problems found by rstlint.
Diffstat (limited to 'Doc/library/xmlrpc.client.rst')
-rw-r--r-- | Doc/library/xmlrpc.client.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index 23bb650..9ee0277 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -513,8 +513,8 @@ transport. The following example shows how: self.proxy = proxy def make_connection(self, host): self.realhost = host - h = http.client.HTTP(self.proxy) - return h + h = http.client.HTTP(self.proxy) + return h def send_request(self, connection, handler, request_body): connection.putrequest("POST", 'http://%s%s' % (self.realhost, handler)) def send_host(self, connection, host): |