From 468428dfaa194d9dfab17aedbe71776d4b667995 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Sun, 21 Oct 2012 13:02:40 -0400 Subject: [PATCH] Removing Bugsnag. --- requirements.txt | 1 - settings.py | 7 ------- 2 files changed, 8 deletions(-) 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',)