remove whitespace in urlrequest docs that travis dont like

This commit is contained in:
Rafał Kaczor 2017-03-18 22:30:32 +01:00
parent 9c9a5652d8
commit 36fb2ce379
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ Example of fetching JSON::
def got_json(req, result):
for key, value in result['headers'].items():
print('{}: {}'.format(key, value))
req = UrlRequest('https://httpbin.org/headers', got_json)
Example of Posting data (adapted from httplib example)::