Skip to content

Commit 7445be5

Browse files
authored
Merge pull request #3236 from takluyver/i3235
Fix output prompt when execution_count missing.
2 parents 6d7fd5c + 8657d99 commit 7445be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/static/notebook/js/outputarea.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ define([
471471
};
472472

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

477477
OutputArea.output_prompt_function = OutputArea.output_prompt_classical;

0 commit comments

Comments
 (0)