Skip to content

Commit

Permalink
Merge pull request #43 from asottile/patch-1
Browse files Browse the repository at this point in the history
Be more python3ic
  • Loading branch information
sjaensch authored Aug 2, 2016
2 parents 5ae8bf9 + d6f996e commit b332859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Here is an example of using Fido::
future = fido.fetch('http://www.foo.bar')
# Work happens in a background thread...
response = future.result(timeout=2)
print response.body
print(response.body)

Frequently Asked Questions
==========================
Expand Down Expand Up @@ -50,7 +50,7 @@ the http proxy before starting your python process.
Example::

$ export http_proxy="http://localhost:8000"
$ python -c "import fido; print fido.fetch("http://www.yelp.com").result().body
$ python -c 'import fido; print(fido.fetch("http://www.yelp.com").result().body)'



Expand Down

0 comments on commit b332859

Please sign in to comment.