diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2012-11-15 18:56:50 -0800 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2012-11-15 18:56:50 -0800 |
| commit | 9f38efe4133f6f4c4a2e58b5867f3f7883d119c8 (patch) | |
| tree | 9dea315df1aff6c934114b6a31a676d05f3c9dc3 /tablib/formats | |
| parent | 5d98239a7e988a1a16261c6cb7073d618b92cfc7 (diff) | |
| parent | 15435047c668aa8e1fb5ffc1a8db30e5b944d5fd (diff) | |
| download | tablib-9f38efe4133f6f4c4a2e58b5867f3f7883d119c8.tar.gz | |
Merge pull request #68 from msabramo/python3
Improve Python 3 compatibility
Diffstat (limited to 'tablib/formats')
| -rw-r--r-- | tablib/formats/_xls.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tablib/formats/_xls.py b/tablib/formats/_xls.py index 9ca0eb3..eab0aa8 100644 --- a/tablib/formats/_xls.py +++ b/tablib/formats/_xls.py @@ -5,9 +5,7 @@ import sys -from tablib.compat import BytesIO, xlwt -from tablib.packages import xlrd -from tablib.packages.xlrd.biffh import XLRDError +from tablib.compat import BytesIO, xlwt, xlrd, XLRDError import tablib title = 'xls' |
