Added missing import.

As this specific code block lists imports in general and an import from the `flask` package specifically, it should also include `g` for the sake of completeness.
This commit is contained in:
Jochen Kupperschmidt 2015-01-13 03:03:14 +01:00
parent 5b98266152
commit e3bb34ec24

View file

@ -276,7 +276,7 @@ having to change some code. This can trivially be accomplished with
hooking the :data:`flask.appcontext_pushed` signal::
from contextlib import contextmanager
from flask import appcontext_pushed
from flask import appcontext_pushed, g
@contextmanager
def user_set(app, user):