Comment 2 for bug 943219

Revision history for this message
Mike Milner (milner) wrote :

For hardy you need python-simplejson, not python-json. Simplejson is the library that was brought into stdlib so the API will be the same (i.e. it has loads)

Usually people use something like this:

try:
    import simplejson as json
except ImportError:
    import json