diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2011-06-21 19:00:27 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2011-06-21 19:00:27 -0400 |
| commit | 4f54de26308c4c97439e9fd0006a48749cbc6802 (patch) | |
| tree | 3774cdad5decce120355dbaa6855f3fc69de78bb /tablib | |
| parent | 1f0d68ee795660683b1160b7605614c572d759df (diff) | |
| download | tablib-4f54de26308c4c97439e9fd0006a48749cbc6802.tar.gz | |
Stick w/ utf-8. Easy enough to modify.
Related: #18.
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/formats/_csv.py | 2 | ||||
| -rw-r--r-- | tablib/formats/_tsv.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tablib/formats/_csv.py b/tablib/formats/_csv.py index 572d196..3a4c374 100644 --- a/tablib/formats/_csv.py +++ b/tablib/formats/_csv.py @@ -10,7 +10,7 @@ title = 'csv' extentions = ('csv',) -DEFAULT_ENCODING = 'utf-8-sig' +DEFAULT_ENCODING = 'utf-8' diff --git a/tablib/formats/_tsv.py b/tablib/formats/_tsv.py index 855dff4..f581f81 100644 --- a/tablib/formats/_tsv.py +++ b/tablib/formats/_tsv.py @@ -10,7 +10,7 @@ from tablib.compat import is_py3, csv, StringIO title = 'tsv' extentions = ('tsv',) -DEFAULT_ENCODING = 'utf-8-sig' +DEFAULT_ENCODING = 'utf-8' def export_set(dataset): """Returns a TSV representation of Dataset.""" |
