Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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