summaryrefslogtreecommitdiff
path: root/AUTHORS
diff options
context:
space:
mode:
authorThomas Anthony <anthony.p.tommy@gmail.com>2015-05-26 20:06:42 -0700
committerThomas Anthony <anthony.p.tommy@gmail.com>2015-05-26 20:06:42 -0700
commitb3485ec942d77ec38775a9dbfcae19bbebf55313 (patch)
tree340cc2c04d47d275ecb90f0d295930fba2ffcbde /AUTHORS
parent24657520e9ebd6c492fd4f81e42fb427febcc972 (diff)
downloadtablib-b3485ec942d77ec38775a9dbfcae19bbebf55313.tar.gz
Fixed a compatibility bug for Python 3 by adding xrange to
compat.py. The code in tablib/formats/_xls.py used xrange in parsing excel spreadsheets. xrange is not a builtin for Python 3, so I've added xrange = range in compat.py and imported it in tablib/formats/_xls.py.
Diffstat (limited to 'AUTHORS')
-rw-r--r--AUTHORS1
1 files changed, 1 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index bd0e0c4..c23d834 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -28,3 +28,4 @@ Patches and Suggestions
- Marc Abramowitz
- Alex Gaynor
- James Douglass
+- Tommy Anthony