8000 Add simplejson requirement · Twilio-api/twilio-python@d005467 · GitHub
[go: up one dir, main page]

Skip to content

Commit d005467

Browse files
committed
Add simplejson requirement
1 parent d498c14 commit d005467

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ mock
33
httplib2
44
nose
55
pyjwt
6+
simplejson

twilio/rest/resources.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
# import json
1111
try:
12-
import simplejson as json
12+
import json
1313
except ImportError:
1414
try:
15-
import json
15+
import simplejson as json
1616
except ImportError:
1717
from django.utils import simplejson as json
1818

0 commit comments

Comments
 (0)
0