Skip to content

Commit

Permalink
Merge pull request #536 from davidt/setting_changed-compat
Browse files Browse the repository at this point in the history
Fix compatibility with Django < 1.8
  • Loading branch information
cyberdelia committed Feb 9, 2016
2 parents 9ca6cbe + 6026235 commit cb39e0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pipeline/conf.py
Expand Up @@ -5,7 +5,11 @@
import shlex

from django.conf import settings as _settings
from django.core.signals import setting_changed
try:
from django.core.signals import setting_changed
except ImportError:
# Django < 1.8
from django.test.signals import setting_changed
from django.dispatch import receiver
from django.utils.six import string_types

Expand Down

0 comments on commit cb39e0d

Please sign in to comment.