~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/diff/__init__.py

  • Committer: William Grant
  • Date: 2010-07-28 04:13:05 UTC
  • mfrom: (1801.1.2 die-cjson-die)
  • Revision ID: grantw@unimelb.edu.au-20100728041305-xwypm3cn1l1mnki1
Port from cjson to (simple)json.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import re
24
24
import cgi
25
25
 
26
 
import cjson
 
26
try:
 
27
    import json
 
28
except ImportError:
 
29
    import simplejson as json
 
30
 
27
31
import genshi
28
32
 
29
33
import ivle.interpret
62
66
                            )
63
67
        assert not err
64
68
 
65
 
        response = cjson.decode(out)
 
69
        response = json.loads(out)
66
70
        if 'error' in response:
67
71
            if response['error'] == 'notfound':
68
72
                raise NotFound()