diff options
| author | Jim Dalton <jim@ere.net> | 2012-05-10 11:29:41 -0700 |
|---|---|---|
| committer | Jim Dalton <jim@ere.net> | 2012-05-10 11:29:41 -0700 |
| commit | 71603662b1d81a0fa9566cf68cb3fc5a584bdffd (patch) | |
| tree | 30915ffde83f6769f8f2e0abbf588ff95f87f948 /tablib | |
| parent | 21c11b9911a0141602444265a34219c16c152067 (diff) | |
| download | tablib-71603662b1d81a0fa9566cf68cb3fc5a584bdffd.tar.gz | |
Make sure codecs module loaded for all versions of Python
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/formats/_html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tablib/formats/_html.py b/tablib/formats/_html.py index 222c589..2a76638 100644 --- a/tablib/formats/_html.py +++ b/tablib/formats/_html.py @@ -11,10 +11,10 @@ if sys.version_info[0] > 2: from tablib.packages import markup3 as markup else: from cStringIO import StringIO - import codecs from tablib.packages import markup import tablib +import codecs BOOK_ENDINGS = 'h3' |
