diff --git a/requirements.txt b/requirements.txt index ab112e9..246120a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ BeautifulSoup boto -bugsnag biplist Django django-annoying diff --git a/settings.py b/settings.py index 4e4fb7d..4bec8ac 100644 --- a/settings.py +++ b/settings.py @@ -108,7 +108,6 @@ MIDDLEWARE_CLASSES = ( 'django.contrib.messages.middleware.MessageMiddleware', 'pagination.middleware.PaginationMiddleware', 'blogs.middleware.BlogMiddleware', - 'bugsnag.django.middleware.BugsnagMiddleware', #'debug_toolbar.middleware.DebugToolbarMiddleware', ) @@ -225,12 +224,6 @@ else: # API TASTYPIE_CANNED_ERROR = "There was an error with your request. The site developers have a record of this error, please email api@snipt.net and we'll help you out." -# Bugsnag -BUGSNAG = { - "api_key": "", - "project_root": PROJECT_PATH, -} - # Extensions if DEBUG: INSTALLED_APPS += ('django_extensions',)