From 8b974eb35523fde507055a27f70484133bb21b79 Mon Sep 17 00:00:00 2001 From: Ron DuPlain Date: Thu, 12 May 2011 12:54:56 -0400 Subject: [PATCH] Note to use debug=False for third-party debuggers. As requested on mailing list. http://flask.pocoo.org/mailinglist/archive/2011/5/12/using-eclipse%2Bpydev-for-debugging-flask-apps/ --- docs/quickstart.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index b4f6027f..c18c2332 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -113,6 +113,11 @@ Screenshot of the debugger in action: :class: screenshot :alt: screenshot of 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``. + Routing -------