Skip to content

Commit 7cb3593

Browse files
authored
Remove unmatched parenthesis from error message (microsoft#22254)
Remove unmatched parenthesis from error message closes: microsoft#22253
1 parent 01c7665 commit 7cb3593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/terminals/codeExecution/helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class CodeExecutionHelper implements ICodeExecutionHelper {
152152
return undefined;
153153
}
154154
if (activeEditor.document.languageId !== PYTHON_LANGUAGE) {
155-
this.applicationShell.showErrorMessage(l10n.t('The active file is not a Python source file)'));
155+
this.applicationShell.showErrorMessage(l10n.t('The active file is not a Python source file'));
156156
return undefined;
157157
}
158158
if (activeEditor.document.isDirty) {

0 commit comments

Comments
 (0)