Absolute imports and docstrings

This commit is contained in:
David Cramer 2011-10-06 14:58:49 -04:00
parent b499e86e83
commit f9ac142455
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,13 @@
"""
sentry.client.django
~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2010 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
import logging
import sys

View File

@ -6,6 +6,8 @@ sentry.client.middleware
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
from django.middleware.common import _is_ignorable_404
from sentry.client.models import get_client
import threading