Remove bundled akismet in favor of pypi package dependency, for #687

This commit is contained in:
Garret Wassermann
2019-01-01 19:55:08 -05:00
parent eaaaad8391
commit 760c9d64dd
3 changed files with 2 additions and 374 deletions

View File

@ -167,7 +167,7 @@ def text_is_spam(text, request):
from django.contrib.sites.models import Site
from django.core.exceptions import ImproperlyConfigured
try:
from helpdesk.akismet import Akismet
from akismet import Akismet
except ImportError:
return False
try: