Skip to content

Commit a63f9d0

Browse files
committed
Corrected an issue on configuration reading
1 parent f956470 commit a63f9d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jupyter_contrib_nbextensions/nbextensions/code_prettify/kernel_exec_on_cell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ define([
4848
};
4949
// extend a new object, to avoid interference with other nbextensions
5050
// derived from the same base class
51-
this.cfg = $.extend(true, {}, cfg, default_cfg);
51+
this.cfg = $.extend(true, {}, default_cfg, cfg);
5252
// set default json string, will later be updated from config
5353
// before it is parsed into an object
5454
this.cfg.kernel_config_map_json = JSON.stringify(this.cfg.kernel_config_map);

0 commit comments

Comments
 (0)