Default to importing simplejson if we can find it (a bit faster)

Change-Id: Ie247fce87521ae2ea415546b32e28bdef280e6ea
This commit is contained in:
R. Tyler Croy 2011-03-02 09:55:02 -08:00
parent e0bb4b35f2
commit ef1bfe5e48
1 changed files with 2 additions and 2 deletions

View File

@ -35,9 +35,9 @@ import time
import traceback
try:
import json
except ImportError:
import simplejson as json
except ImportError:
import json
import eventlet