Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
Use simplejson . 

pip install simplejson 

 'cse of newer version of django depricated simplejson
  • Loading branch information
Anish Menon committed Nov 6, 2014
1 parent 6eb76f5 commit e7223ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/lib/drealtime/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import httplib
import socket
from django.conf import settings
from django.utils import simplejson as json

try:
from django.utils import simplejson as json
except:
import simplejson as json

__version__ = '0.1.5'
VERSION = map(int, __version__.split('.'))
Expand Down

0 comments on commit e7223ae

Please sign in to comment.