Add simplejson into dependency.

Actually, keystone-client enforces simplejson.  We can do that too.

Change-Id: If8c082e55269766d7a0653f87d640f79bc8ad336
This commit is contained in:
Zhihao Yuan 2013-04-19 13:01:22 -04:00 committed by Gerrit Code Review
parent 0b5724600b
commit 62572bd61d
2 changed files with 2 additions and 4 deletions

View File

@ -13,10 +13,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
try: import simplejson as json
import simplejson as json
except ImportError:
import json
class MalformedJSON(Exception): class MalformedJSON(Exception):

View File

@ -1,5 +1,6 @@
cliff cliff
falcon>=0.1.4 falcon>=0.1.4
simplejson
msgpack-python msgpack-python
oslo.config>=1.1.0 oslo.config>=1.1.0
PasteDeploy PasteDeploy