diff options
| author | Gavin Wahl <gwahl@fusionbox.com> | 2013-11-13 13:01:27 -0700 |
|---|---|---|
| committer | Gavin Wahl <gwahl@fusionbox.com> | 2013-11-13 13:01:27 -0700 |
| commit | 3b06f3760d70dc4b1ba9bf1daa456f10ebc98230 (patch) | |
| tree | ba88678acc3e59efda49b989bc91c25639cfff53 | |
| parent | ff8f23edd5f9646720a29c305136b04d18ff0e7b (diff) | |
| download | tablib-3b06f3760d70dc4b1ba9bf1daa456f10ebc98230.tar.gz | |
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 cb192ae..15601f5 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. |
