Skip to content

Instantly share code, notes, and snippets.

@BlackPie
Created June 7, 2016 06:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BlackPie/b81220f0d06e6698e36d6b38959c9684 to your computer and use it in GitHub Desktop.
Save BlackPie/b81220f0d06e6698e36d6b38959c9684 to your computer and use it in GitHub Desktop.
# dont work
class StatsMiddleware(object):
def process_view(self, request, view_func, view_args, view_kwargs):
raise Exception
# works fine
class StatsMiddleware(object):
def process_request(self, *args, **kwargs)
raise Exception
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment