Skip to content

Commit cbac7ba

Browse files
Update name in dynamic config (#47)
1 parent d45970e commit cbac7ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/extension/debugger/configuration/dynamicdebugConfigurationService.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
2323
const providers = [];
2424

2525
providers.push({
26-
name: 'Python: File',
26+
name: 'Debugpy: Python File',
2727
type: DebuggerTypeName,
2828
request: 'launch',
2929
program: '${file}',
@@ -33,7 +33,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
3333
const djangoManagePath = await DynamicPythonDebugConfigurationService.getDjangoPath(folder);
3434
if (djangoManagePath) {
3535
providers.push({
36-
name: 'Python: Django',
36+
name: 'Debugpy: Django',
3737
type: DebuggerTypeName,
3838
request: 'launch',
3939
program: `${workspaceFolderToken}${path.sep}${djangoManagePath}`,
@@ -46,7 +46,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
4646
const flaskPath = await DynamicPythonDebugConfigurationService.getFlaskPath(folder);
4747
if (flaskPath) {
4848
providers.push({
49-
name: 'Python: Flask',
49+
name: 'Debugpy: Flask',
5050
type: DebuggerTypeName,
5151
request: 'launch',
5252
module: 'flask',
@@ -64,7 +64,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
6464
if (fastApiPath) {
6565
fastApiPath = replaceAll(path.relative(folder.uri.fsPath, fastApiPath), path.sep, '.').replace('.py', '');
6666
providers.push({
67-
name: 'Python: FastAPI',
67+
name: 'Debugpy: FastAPI',
6868
type: DebuggerTypeName,
6969
request: 'launch',
7070
module: 'uvicorn',

0 commit comments

Comments
 (0)