Browse Source

Merge branch '0.11-maintenance'

pull/2070/head
Markus Unterwaditzer 8 years ago
parent
commit
2b8fef4fe7
  1. 2
      docs/tutorial/packaging.rst
  2. 2
      examples/flaskr/flaskr/__init__.py
  3. 2
      examples/flaskr/setup.cfg

2
docs/tutorial/packaging.rst

@ -55,7 +55,7 @@ into this file, :file:`flaskr/__init__.py`:
.. sourcecode:: python
from flaskr import app
from .flaskr import app
This import statement brings the application instance into the top-level
of the application package. When it is time to run the application, the

2
examples/flaskr/flaskr/__init__.py

@ -1 +1 @@
from flaskr.flaskr import app
from .flaskr import app

2
examples/flaskr/setup.cfg

@ -1,2 +1,2 @@
[aliases]
[tool:pytest]
test=pytest

Loading…
Cancel
Save