Skip to content

Commit

Permalink
include debugpy in description (#570)
Browse files Browse the repository at this point in the history
* include debugpy in description

* formatting
  • Loading branch information
eleanorjboyd authored Jan 24, 2025
1 parent 5c50426 commit ce93c4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/extension/noConfigDebugInit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export async function registerNoConfigDebug(
const bundledDebugPath = path.join(extPath, 'bundled', 'libs', 'debugpy');
collection.replace('BUNDLED_DEBUGPY_PATH', bundledDebugPath);

envVarCollection.description = l10n.t('Enables use of no-config debugging command in the terminal.');
envVarCollection.description = l10n.t(
'Enables use of no-config debugging command, `debugpy <script.py>`, in the terminal.',
);

// create file system watcher for the debuggerAdapterEndpointFolder for when the communication port is written
const fileSystemWatcher = createFileSystemWatcher(new RelativePattern(tempDirPath, '**/*'));
Expand Down

0 comments on commit ce93c4d

Please sign in to comment.