diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2014-01-08 11:41:15 -0800 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2014-01-08 11:41:15 -0800 |
| commit | d19de6025bc92abf7b0fbee2b311a7e43aa239bf (patch) | |
| tree | a7302095ad51c730140bdf6f6d6e1f92e072a9a6 | |
| parent | 65ba937c0dd3ef9eacbac03359eb1e698f742fb7 (diff) | |
| parent | 3b06f3760d70dc4b1ba9bf1daa456f10ebc98230 (diff) | |
| download | tablib-d19de6025bc92abf7b0fbee2b311a7e43aa239bf.tar.gz | |
Merge pull request #131 from fusionbox/quotes
remove extraneous quote marks
| -rw-r--r-- | tablib/core.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tablib/core.py b/tablib/core.py index f4474d3..5e041b0 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -447,7 +447,7 @@ class Dataset(object): :class:`Dataset.xls` contains binary data, so make sure to write in binary mode:: with open('output.xls', 'wb') as f: - f.write(data.xls)' + f.write(data.xls) """ pass @@ -460,7 +460,7 @@ class Dataset(object): :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)' + f.write(data.xlsx) """ pass @@ -473,7 +473,7 @@ class Dataset(object): :class:`Dataset.ods` contains binary data, so make sure to write in binary mode:: with open('output.ods', 'wb') as f: - f.write(data.ods)' + f.write(data.ods) """ pass @@ -496,7 +496,7 @@ class Dataset(object): sure to write in binary mode:: with open('output.csv', 'wb') as f: - f.write(data.csv)' + f.write(data.csv) If you do not do this, and you export the file on Windows, your CSV file will open in Excel with a blank line between each row. |
