Commit be8daf74 by David Baumgold

/event was returning invalid JSON: fix it

parent 0a7222b1
...@@ -21,7 +21,7 @@ def event(request): ...@@ -21,7 +21,7 @@ def event(request):
A noop to swallow the analytics call so that cms methods don't spook and poor developers looking at A noop to swallow the analytics call so that cms methods don't spook and poor developers looking at
console logs don't get distracted :-) console logs don't get distracted :-)
''' '''
return HttpResponse(True) return HttpResponse(status=204)
def get_request_method(request): def get_request_method(request):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment