Fix sentry raven install docs

The documentation for installing Sentry's raven client was incorrect. It should state that the client must be installed with the extra flask dependencies as mentioned in getsentry/raven-python#1075
This commit is contained in:
Andy Craze 2017-12-14 19:45:09 -08:00 committed by GitHub
parent 27a7171d42
commit 1cdfe0e5e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,9 +42,9 @@ aggregates duplicate errors, captures the full stack trace and local
variables for debugging, and sends you mails based on new errors or
frequency thresholds.
To use Sentry you need to install the `raven` client::
To use Sentry you need to install the `raven` client with extra `flask` dependencies::
$ pip install raven
$ pip install raven[flask]
And then add this to your Flask app::