Use json if anyjson not available

This commit is contained in:
Konsta Vesterinen
2014-03-19 15:52:24 +02:00
parent ac819c2683
commit 2787193deb

View File

@@ -4,7 +4,7 @@ json = None
try:
import anyjson as json
except ImportError:
pass
import json as json
import six
from sqlalchemy.dialects.postgresql.base import ischema_names