diff options
| author | Claude Paroz <claude@2xlibre.net> | 2019-10-04 20:32:01 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2019-10-04 20:46:31 +0200 |
| commit | 91062672b5406972da75bdcf02ad8373fff96377 (patch) | |
| tree | 2ced8643acabcb9238d9c47d45f4ceea86439d2d /tablib/formats/__init__.py | |
| parent | 34334e72a12c28425aff9162da13c3300bb80e18 (diff) | |
| download | tablib-91062672b5406972da75bdcf02ad8373fff96377.tar.gz | |
Fixed #373 - Properly detect xlsx format
Diffstat (limited to 'tablib/formats/__init__.py')
| -rw-r--r-- | tablib/formats/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tablib/formats/__init__.py b/tablib/formats/__init__.py index 418e607..52cf472 100644 --- a/tablib/formats/__init__.py +++ b/tablib/formats/__init__.py @@ -17,4 +17,5 @@ from . import _df as df from . import _rst as rst from . import _jira as jira -available = (json, xls, yaml, csv, dbf, tsv, html, jira, latex, xlsx, ods, df, rst) +# xlsx before as xls (xlrd) can also read xlsx +available = (json, xlsx, xls, yaml, csv, dbf, tsv, html, jira, latex, ods, df, rst) |
