diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-12 19:39:46 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-12 19:39:46 -0500 |
commit | 482ada7da21540dc62a1daeed4963bd591a77e00 (patch) | |
tree | efb3fc5b14bdb2f8838dfc37b09c56f3c6a2ae8c /mirrors/views.py | |
parent | cdfa6c1195bb6feb812bffc981183f0758ca5e2f (diff) | |
parent | cbdcb08557112f53ddcf074b950ee0950e12a045 (diff) |
Merge tag 'release_2012-04-02'
Signing page changes, other tweaks
Conflicts:
README
local_settings.py.example
requirements_prod.txt
urls.py
Diffstat (limited to 'mirrors/views.py')
-rw-r--r-- | mirrors/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrors/views.py b/mirrors/views.py index 2ef8654d..e93097a3 100644 --- a/mirrors/views.py +++ b/mirrors/views.py @@ -169,7 +169,7 @@ class MirrorStatusJSONEncoder(DjangoJSONEncoder): def status_json(request): status_info = get_mirror_statuses() data = status_info.copy() - data['version'] = 1 + data['version'] = 2 to_json = simplejson.dumps(data, ensure_ascii=False, cls=MirrorStatusJSONEncoder) response = HttpResponse(to_json, mimetype='application/json') |