From 74514fc83795d5ca705f67333993b5c7f9d01316 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sun, 8 May 2011 11:31:52 +0200 Subject: [PATCH] the import order note was meant to be bold, not cursive --- docs/patterns/packages.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/packages.rst b/docs/patterns/packages.rst index e1b92c08..28cd70e4 100644 --- a/docs/patterns/packages.rst +++ b/docs/patterns/packages.rst @@ -57,7 +57,7 @@ following quick checklist: 2. all the view functions (the ones with a :meth:`~flask.Flask.route` decorator on top) have to be imported when in the `__init__.py` file. Not the object itself, but the module it is in. Import the view module - *after the application object is created*. + **after the application object is created**. Here's an example `__init__.py`::