diff options
| author | Peter M. Landwehr <plandweh@cs.cmu.edu> | 2016-02-27 21:14:13 -0800 |
|---|---|---|
| committer | Peter M. Landwehr <plandweh@cs.cmu.edu> | 2016-02-27 21:14:13 -0800 |
| commit | af17586581ebf3e8b53ce34c8b9053d5260e2867 (patch) | |
| tree | 6fdae3f2f2d40e11d7e3c29f10f0c701402ea3ae /tablib | |
| parent | 23d21f00f38ccb87a39e0f7f1b9e5cab26e8244a (diff) | |
| download | tablib-af17586581ebf3e8b53ce34c8b9053d5260e2867.tar.gz | |
python 3 fix: map filter to ifilter
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/compat.py | 1 |
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 |
