Skip to content

Commit

Permalink
Update README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jun 19, 2016
1 parent 358269c commit 6ed388c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ To retrieve four things from the web with concurrency:
coroutines = [fetch(session, url) for url in URLS]
pages = [loop.run_until_complete(coroutine) for coroutine in coroutines]
for url, page in zip(URLS, pages):
print('{:>15}\n{}\n{:.100}\n'.format(url, '=' * len(url), page))
print('{}:\n{}=\n{:.100}\n'.format(url, '=' * len(url), page))
Server
^^^^^^
Expand Down

0 comments on commit 6ed388c

Please sign in to comment.