Skip to content

Commit

Permalink
Fix output prompt when execution_count missing.
Browse files Browse the repository at this point in the history
Closes gh-3235
  • Loading branch information
takluyver committed Jan 18, 2018
1 parent 6526a19 commit 8657d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/static/notebook/js/outputarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ define([
};

OutputArea.output_prompt_classical = function(prompt_value) {
return $('<bdi>').text(i18n.msg.sprintf(i18n.msg._('Out[%d]:'),prompt_value));
return $('<bdi>').text(i18n.msg.sprintf(i18n.msg._('Out[%s]:'),prompt_value));
};

OutputArea.output_prompt_function = OutputArea.output_prompt_classical;
Expand Down

0 comments on commit 8657d99

Please sign in to comment.