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

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/svnlog/__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:
19
19
 
20
20
import os
21
21
 
22
 
import cjson
 
22
try:
 
23
    import json
 
24
except ImportError:
 
25
    import simplejson as json
 
26
 
23
27
import pysvn
24
28
 
25
29
import ivle.date
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()