/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/controllers/changelog_ui.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-02 14:07:21 UTC
  • mto: This revision was merged to the branch mainline in revision 430.
  • Revision ID: jelmer@samba.org-20110302140721-37qson2dve2i4css
Drop support for json as simplejson alternative.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
import urllib
22
22
 
23
 
try:
24
 
    import simplejson
25
 
except ImportError:
26
 
    import json as simplejson
 
23
import simplejson
27
24
 
28
25
from paste.httpexceptions import HTTPServerError
29
26