Skip to content

Commit

Permalink
Fix json import error
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Feb 28, 2012
1 parent 8cfbc5b commit ec03a17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_make_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
Uses the awesome httpbin.org to validate responses
"""
import json
try:
import json
except ImportError:
import simplejson as json
import twilio
from nose.tools import assert_equals
from nose.tools import raises
Expand Down

0 comments on commit ec03a17

Please sign in to comment.