Some slight doc improvements

This commit is contained in:
David Cramer 2013-04-16 16:26:16 -07:00
parent 54ab41cb8c
commit dc3b7ee45b
1 changed files with 4 additions and 3 deletions

View File

@ -10,13 +10,14 @@ Using the Django integration is as simple as adding :mod:`raven.contrib.django.r
'raven.contrib.django.raven_compat',
)
.. note:: This causes Raven to install a hook in Django that will automatically report uncaught exceptions.
Additional settings for the client are configured using the ``RAVEN_CONFIG`` dictionary::
RAVEN_CONFIG = {
'dsn': 'http://public:secret@example.com/1',
}
You'll be referencing the client slightly differently in Django as well::
from raven.contrib.django.raven_compat.models import client
@ -47,8 +48,8 @@ Integration with :mod:`logging`
To integrate with the standard library's :mod:`logging` module:
Django 1.3
~~~~~~~~~~
Django 1.3 or Newer
~~~~~~~~~~~~~~~~~~~
::