Add kwargs to JSONResponse nop catch-all.

This commit is contained in:
Max Goodman
2011-11-30 09:44:45 -08:00
parent 9682cb5aad
commit 3c4fc1c897

View File

@@ -60,7 +60,7 @@ class JsonResponse(object):
self._clear()
self._errors.add((error, None))
def __call__(self, *a):
def __call__(self, *a, **kw):
return self
def __getattr__(self, key):