- Fix for python2.4
@@ -15,7 +15,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import json
+try:
+ import json
+except ImportError:
+ import simplejson as json
import logging
import time
import unittest