Skip to content

Commit

Permalink
Merge pull request #211 from bmispelon/dj13-fix
Browse files Browse the repository at this point in the history
Fixed Django < 1.4 support in context processors.
  • Loading branch information
omab committed Mar 9, 2014
2 parents babfd43 + f7527f4 commit 5682ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion social/apps/django_app/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from django.utils.functional import empty as _empty
empty = _empty
except ImportError: # django < 1.4
empty = object()
empty = None


from social.backends.utils import user_backends_data
Expand Down

0 comments on commit 5682ad6

Please sign in to comment.