summaryrefslogtreecommitdiff
path: root/tablib
diff options
context:
space:
mode:
authorPeter M. Landwehr <plandweh@cs.cmu.edu>2016-02-27 21:14:13 -0800
committerPeter M. Landwehr <plandweh@cs.cmu.edu>2016-02-27 21:14:13 -0800
commitaf17586581ebf3e8b53ce34c8b9053d5260e2867 (patch)
tree6fdae3f2f2d40e11d7e3c29f10f0c701402ea3ae /tablib
parent23d21f00f38ccb87a39e0f7f1b9e5cab26e8244a (diff)
downloadtablib-af17586581ebf3e8b53ce34c8b9053d5260e2867.tar.gz
python 3 fix: map filter to ifilter
Diffstat (limited to 'tablib')
-rw-r--r--tablib/compat.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tablib/compat.py b/tablib/compat.py
index e03526d..2593e36 100644
--- a/tablib/compat.py
+++ b/tablib/compat.py
@@ -34,6 +34,7 @@ if is_py3:
from io import StringIO
# py3 mappings
+ ifilter = filter
unicode = str
bytes = bytes
basestring = str