Use anyjson consistently.

Reviewed in http://codereview.appspot.com/6343090/.
This commit is contained in:
Joe Gregorio
2012-07-10 10:35:14 -04:00
parent 672051e279
commit 973b3a1dcc

View File

@@ -23,7 +23,6 @@ the generated API surface itself.
__author__ = 'jcgregorio@google.com (Joe Gregorio)'
import json
import os
import re
import sys
@@ -328,7 +327,7 @@ def document_api(name, version):
'api': name,
'apiVersion': version})
)
discovery = json.loads(content)
discovery = simplejson.loads(content)
version = safe_version(version)