From c20c814a69d86dfdd3df15f5c39f2fbda950d0bd Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Thu, 3 May 2012 07:43:00 +0200 Subject: [PATCH] space around assignement --- IPython/frontend/html/notebook/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/handlers.py b/IPython/frontend/html/notebook/handlers.py index ed0fe6afc..ba0bfd2ab 100644 --- a/IPython/frontend/html/notebook/handlers.py +++ b/IPython/frontend/html/notebook/handlers.py @@ -596,7 +596,7 @@ class NotebookRootHandler(AuthenticatedHandler): nid = f['notebook_id'] kid = km.kernel_for_notebook(nid) if kid is not None: - f['kernel_id']=kid + f['kernel_id'] = kid self.finish(jsonapi.dumps(files)) @web.authenticated