From d94f68b3ef136abbc8662339fc1fec189d15a901 Mon Sep 17 00:00:00 2001 From: Paula Camargo Date: Tue, 27 Jun 2023 18:58:53 -0700 Subject: [PATCH] Update name in dynamic config --- .../configuration/dynamicdebugConfigurationService.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/extension/debugger/configuration/dynamicdebugConfigurationService.ts b/src/extension/debugger/configuration/dynamicdebugConfigurationService.ts index 84097a88..c0a92b42 100644 --- a/src/extension/debugger/configuration/dynamicdebugConfigurationService.ts +++ b/src/extension/debugger/configuration/dynamicdebugConfigurationService.ts @@ -23,7 +23,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf const providers = []; providers.push({ - name: 'Python: File', + name: 'Debugpy: Python File', type: DebuggerTypeName, request: 'launch', program: '${file}', @@ -33,7 +33,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf const djangoManagePath = await DynamicPythonDebugConfigurationService.getDjangoPath(folder); if (djangoManagePath) { providers.push({ - name: 'Python: Django', + name: 'Debugpy: Django', type: DebuggerTypeName, request: 'launch', program: `${workspaceFolderToken}${path.sep}${djangoManagePath}`, @@ -46,7 +46,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf const flaskPath = await DynamicPythonDebugConfigurationService.getFlaskPath(folder); if (flaskPath) { providers.push({ - name: 'Python: Flask', + name: 'Debugpy: Flask', type: DebuggerTypeName, request: 'launch', module: 'flask', @@ -64,7 +64,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf if (fastApiPath) { fastApiPath = replaceAll(path.relative(folder.uri.fsPath, fastApiPath), path.sep, '.').replace('.py', ''); providers.push({ - name: 'Python: FastAPI', + name: 'Debugpy: FastAPI', type: DebuggerTypeName, request: 'launch', module: 'uvicorn',