Skip to content

Commit

Permalink
Merge pull request #132 from minrk/nb-version
Browse files Browse the repository at this point in the history
fix notebook version in About
  • Loading branch information
minrk committed Jun 4, 2015
2 parents 69094bf + a978987 commit a6c5be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/static/notebook/js/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require([
// use underscore template to auto html escape
var text = 'You are using Jupyter notebook.<br/><br/>';
text = text + 'The version of the notebook server is ';
text = text + _.template('<b><%- version %></b>')({ version: sys_info.ipython_version });
text = text + _.template('<b><%- version %></b>')({ version: sys_info.notebook_version });
if (sys_info.commit_hash) {
text = text + _.template('-<%- hash %>')({ hash: sys_info.commit_hash });
}
Expand Down

0 comments on commit a6c5be5

Please sign in to comment.