Skip to content

Commit

Permalink
Merge pull request #3236 from takluyver/i3235
Browse files Browse the repository at this point in the history
Fix output prompt when execution_count missing.
  • Loading branch information
takluyver authored Feb 2, 2018
2 parents 6d7fd5c + 8657d99 commit 7445be5
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 7445be5

Please sign in to comment.