Merge pull request #109 from alex/patch-1

Write the example file reliably in the readme
This commit is contained in:
Kenneth Reitz 2013-08-25 13:26:47 -07:00
commit 8bc69c9d85
1 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,8 @@ EXCEL!
++++++
::
>>> open('people.xls', 'wb').write(data.xls)
>>> with open('people.xls', 'wb') as f:
... f.write(data.xls)
It's that easy.