Skip to content

Instantly share code, notes, and snippets.

@cocoatomo
Created April 5, 2012 13:28
Show Gist options
  • Save cocoatomo/2311028 to your computer and use it in GitHub Desktop.
Save cocoatomo/2311028 to your computer and use it in GitHub Desktop.
def _lookup_object(name):
top = _request_ctx_stack.top
if top is None:
raise RuntimeError('working outside of request context')
return getattr(top, name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment