Browse Source

Fixed a missing import

pull/952/head
Armin Ronacher 11 years ago
parent
commit
e78961c812
  1. 2
      flask/ctx.py

2
flask/ctx.py

@ -19,7 +19,7 @@ from werkzeug.exceptions import HTTPException
from .globals import _request_ctx_stack, _app_ctx_stack
from .module import blueprint_is_module
from .signals import appcontext_pushed, appcontext_popped
from ._compat import BROKEN_PYPY_CTXMGR_EXIT
from ._compat import BROKEN_PYPY_CTXMGR_EXIT, reraise
class _AppCtxGlobals(object):

Loading…
Cancel
Save