Skip to content

Commit acc8906

Browse files
authored
Fix workspaceFolderToken -> workspaceFolder (#21095)
The UI string is currently using the internal variable name (workspaceFolderToken) instead of the one actually used in the file (workspaceFolder). This PR fixes that.
1 parent 1f4bfe9 commit acc8906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/common/utils/localize.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ export namespace DebugConfigStrings {
351351
export const enterManagePyPath = {
352352
title: l10n.t('Debug Django'),
353353
prompt: l10n.t(
354-
"Enter the path to manage.py ('${workspaceFolderToken}' points to the root of the current workspace folder)",
354+
"Enter the path to manage.py ('${workspaceFolder}' points to the root of the current workspace folder)",
355355
),
356356
invalid: l10n.t('Enter a valid Python file path'),
357357
};

0 commit comments

Comments
 (0)