Rely on built-in JSON.

This commit is contained in:
Kenneth Reitz
2010-10-06 12:23:30 -04:00
parent 140e23c980
commit 9dfd9d0c8e
+5 -1
View File
@@ -3,7 +3,11 @@
""" Tablib - JSON Support
"""
import simplejson as json
try:
import json
except ImportError:
import simplejson as json
import tablib.core
title = 'json'