diff options
| author | Claude Paroz <claude@2xlibre.net> | 2017-02-24 13:38:07 +0100 |
|---|---|---|
| committer | Iuri de Silvio <iurisilvio@gmail.com> | 2017-02-24 09:38:07 -0300 |
| commit | 46102d4be718ee6fd6c003c1387df7c940e65b2c (patch) | |
| tree | 5252cf1777720539a25885f3b9b2d5d417f85d08 /tablib/formats/_json.py | |
| parent | 44e9e24fec35bf7697e22aaa94feccdad23e5b79 (diff) | |
| download | tablib-46102d4be718ee6fd6c003c1387df7c940e65b2c.tar.gz | |
Replaced vendored omnijson by the standard lib version (#279)
Refs #273.
Diffstat (limited to 'tablib/formats/_json.py')
| -rw-r--r-- | tablib/formats/_json.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tablib/formats/_json.py b/tablib/formats/_json.py index 72c3d02..a3d6cc3 100644 --- a/tablib/formats/_json.py +++ b/tablib/formats/_json.py @@ -7,10 +7,9 @@ import decimal import tablib try: - import json + import ujson as json except ImportError: - from tablib.packages import omnijson as json - + import json title = 'json' extensions = ('json', 'jsn') |
