Skip to content

Commit 6084fe8

Browse files
author
Kartik Raj
authored
More fixes to pre-release (#22641)
Further followup to #22640
1 parent d3fe64c commit 6084fe8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/client/common/utils/localize.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ export namespace Diagnostics {
4343
export const pylanceDefaultMessage = l10n.t(
4444
"The Python extension now includes Pylance to improve completions, code navigation, overall performance and much more! You can learn more about the update and learn how to change your language server [here](https://aka.ms/new-python-bundle).\n\nRead Pylance's license [here](https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license).",
4545
);
46-
export const invalidSmartSendMessage = l10n.t(`Python is unable to parse the code provided. Please
46+
export const invalidSmartSendMessage = l10n.t(
47+
`Python is unable to parse the code provided. Please
4748
turn off Smart Send if you wish to always run line by line or explicitly select code
48-
to force run. See [logs](command:${Commands.ViewOutput}) for more details`);
49+
to force run. See [logs](command:{0}) for more details`,
50+
Commands.ViewOutput,
51+
);
4952
}
5053

5154
export namespace Common {

0 commit comments

Comments
 (0)