Use stdlib json, not zmq jsonapi

This commit is contained in:
Thomas Kluyver 2014-06-18 12:51:41 -07:00
parent 85ce34bc66
commit ebf0ea32ef

View File

@ -2,11 +2,9 @@
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import json
from tornado import web
from zmq.utils import jsonapi
from ...base.handlers import IPythonHandler, json_errors
@ -24,7 +22,7 @@ class MainKernelSpecHandler(IPythonHandler):
results.append(d)
self.set_header("Content-Type", 'application/json')
self.finish(jsonapi.dumps(results))
self.finish(json.dumps(results))
class KernelSpecHandler(IPythonHandler):