From ea77d5e12d5148e8f42e449deac64f363c5db484 Mon Sep 17 00:00:00 2001 From: Ron DuPlain Date: Thu, 19 May 2011 09:14:53 -0400 Subject: [PATCH] Touch up docs according to user feedback. --- docs/quickstart.rst | 4 ++-- flask/config.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index c18c2332..fc5ae0f1 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -115,8 +115,8 @@ Screenshot of the debugger in action: .. admonition:: Working With Other Debuggers - Some third-party debuggers, e.g. PyDev and IntelliJ, are interrupted when - ``app`` reloads. To use these debuggers, set ``app.debug = False``. + Debuggers interfere with each other. If you are using another debugger + (e.g. PyDev or IntelliJ), you may need to set ``app.debug = False``. Routing diff --git a/flask/config.py b/flask/config.py index b588dfa1..bb2d6e9e 100644 --- a/flask/config.py +++ b/flask/config.py @@ -141,8 +141,8 @@ class Config(dict): Objects are usually either modules or classes. - Just the uppercase variables in that object are stored in the config - after lowercasing. Example usage:: + Just the uppercase variables in that object are stored in the config. + Example usage:: app.config.from_object('yourapplication.default_config') from yourapplication import default_config