Skip to content

Commit

Permalink
sjson -> simplejson
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 5, 2017
1 parent c2f9bac commit e787d1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from datetime import datetime, timedelta
import json
import simplejson as sjson
import simplejson
import logging
import pickle
import re
Expand Down Expand Up @@ -1404,7 +1404,7 @@ def explore_json(self, datasource_type, datasource_id):
status = 500

return Response(
sjson.dumps(
simplejson.dumps(
payload, default=utils.json_int_dttm_ser, ignore_nan=True),
status=status,
mimetype="application/json")
Expand Down

0 comments on commit e787d1d

Please sign in to comment.