summaryrefslogtreecommitdiff
path: root/tablib/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'tablib/core.py')
-rw-r--r--tablib/core.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tablib/core.py b/tablib/core.py
index 678e515..eba792c 100644
--- a/tablib/core.py
+++ b/tablib/core.py
@@ -403,14 +403,14 @@ class Dataset(object):
@property
def ods():
- """An Excel Spreadsheet representation of the :class:`Dataset` object, with :ref:`separators`. Cannot be set.
+ """An OpenDocument Spreadsheet representation of the :class:`Dataset` object, with :ref:`separators`. Cannot be set.
.. admonition:: Binary Warning
:class:`Dataset.xlsx` contains binary data, so make sure to write in binary mode::
- with open('output.xlsx', 'wb') as f:
- f.write(data.xlsx)'
+ with open('output.ods', 'wb') as f:
+ f.write(data.ods)'
"""
pass