From ed88d5c6a149edf24def984b576c6af932b3afc6 Mon Sep 17 00:00:00 2001 From: chfw Date: Thu, 21 May 2015 01:03:44 +0100 Subject: [PATCH] fix broken build --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 2e95075..65209f3 100644 --- a/README.rst +++ b/README.rst @@ -93,7 +93,7 @@ Here's the sample code to write a dictionary to an xls file:: >>> data.update({"Sheet 1": [[1, 2, 3], [4, 5, 6]]}) >>> data.update({"Sheet 2": [[7, 8, 9], [10, 11, 12]]}) >>> io = StringIO() - >>> store_data(io, data) + >>> save_data(io, data) >>> # do something with the io >>> # In reality, you might give it to your http response >>> # object for downloading