Browse Source

Pass exc explicitly to the inner context.

pull/483/head
Armin Ronacher 13 years ago
parent
commit
cb54c462b8
  1. 2
      flask/ctx.py

2
flask/ctx.py

@ -224,7 +224,7 @@ class RequestContext(object):
# Get rid of the app as well if necessary. # Get rid of the app as well if necessary.
if self._pushed_application_context: if self._pushed_application_context:
self._pushed_application_context.pop() self._pushed_application_context.pop(exc)
self._pushed_application_context = None self._pushed_application_context = None
def __enter__(self): def __enter__(self):

Loading…
Cancel
Save