Skip to content

Commit

Permalink
Remove unmatched parenthesis from error message (#22254)
Browse files Browse the repository at this point in the history
Remove unmatched parenthesis from error message

closes: #22253
  • Loading branch information
BoltonBailey authored Oct 18, 2023
1 parent 01c7665 commit 7cb3593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/terminals/codeExecution/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class CodeExecutionHelper implements ICodeExecutionHelper {
return undefined;
}
if (activeEditor.document.languageId !== PYTHON_LANGUAGE) {
this.applicationShell.showErrorMessage(l10n.t('The active file is not a Python source file)'));
this.applicationShell.showErrorMessage(l10n.t('The active file is not a Python source file'));
return undefined;
}
if (activeEditor.document.isDirty) {
Expand Down

0 comments on commit 7cb3593

Please sign in to comment.