Skip to content

Commit

Permalink
Prepend dot to file extension
Browse files Browse the repository at this point in the history
[Per the Jupyter Messaging spec](http://jupyter-client.readthedocs.org/en/latest/messaging.html#kernel-info), the file extension in a `kernel_info_reply` needs to include the `.`.
  • Loading branch information
rgbkrk authored and n-riesco committed Jan 19, 2016
1 parent 62cd6d5 commit 9967122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlers_v5.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function kernel_info_request(request) {
"name": "javascript",
"version": nodeVersion,
"mimetype": "application/javascript",
"file_extension": "js",
"file_extension": ".js",
},
"banner": (
"IJavascript v" + ijsVersion + "\n" +
Expand Down

0 comments on commit 9967122

Please sign in to comment.