From a978987da9695bb335707a57101b8cd07932a045 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 3 Jun 2015 20:05:20 -0800 Subject: [PATCH] fix notebook version in About --- notebook/static/notebook/js/about.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/notebook/js/about.js b/notebook/static/notebook/js/about.js index ac799e0c9..50ef7ad3d 100644 --- a/notebook/static/notebook/js/about.js +++ b/notebook/static/notebook/js/about.js @@ -11,7 +11,7 @@ require([ // use underscore template to auto html escape var text = 'You are using Jupyter notebook.

'; text = text + 'The version of the notebook server is '; - text = text + _.template('<%- version %>')({ version: sys_info.ipython_version }); + text = text + _.template('<%- version %>')({ version: sys_info.notebook_version }); if (sys_info.commit_hash) { text = text + _.template('-<%- hash %>')({ hash: sys_info.commit_hash }); }