Skip to content

Commit

Permalink
simplejson should not be required.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sureiya committed Nov 11, 2013
1 parent cd95914 commit bbc19d8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
from django.views.decorators.csrf import csrf_exempt
from django.views.decorators.http import require_POST
from django.conf import settings
import simplejson as json

try:
import simplejson as json
except:
import json

import logging

from django_clickbank.models import Post, Notification
Expand Down

0 comments on commit bbc19d8

Please sign in to comment.