forked from orbit-oss/flask
Touch up docs according to user feedback.
This commit is contained in:
parent
8b974eb355
commit
ea77d5e12d
2 changed files with 4 additions and 4 deletions
|
|
@ -115,8 +115,8 @@ Screenshot of the debugger in action:
|
||||||
|
|
||||||
.. admonition:: Working With Other Debuggers
|
.. admonition:: Working With Other Debuggers
|
||||||
|
|
||||||
Some third-party debuggers, e.g. PyDev and IntelliJ, are interrupted when
|
Debuggers interfere with each other. If you are using another debugger
|
||||||
``app`` reloads. To use these debuggers, set ``app.debug = False``.
|
(e.g. PyDev or IntelliJ), you may need to set ``app.debug = False``.
|
||||||
|
|
||||||
|
|
||||||
Routing
|
Routing
|
||||||
|
|
|
||||||
|
|
@ -141,8 +141,8 @@ class Config(dict):
|
||||||
|
|
||||||
Objects are usually either modules or classes.
|
Objects are usually either modules or classes.
|
||||||
|
|
||||||
Just the uppercase variables in that object are stored in the config
|
Just the uppercase variables in that object are stored in the config.
|
||||||
after lowercasing. Example usage::
|
Example usage::
|
||||||
|
|
||||||
app.config.from_object('yourapplication.default_config')
|
app.config.from_object('yourapplication.default_config')
|
||||||
from yourapplication import default_config
|
from yourapplication import default_config
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue