/event was returning invalid JSON: fix it

This commit is contained in:
David Baumgold
2013-05-22 15:11:17 -04:00
parent 0a7222b123
commit be8daf7468

View File

@@ -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
console logs don't get distracted :-)
'''
return HttpResponse(True)
return HttpResponse(status=204)
def get_request_method(request):