From fc7f4790e3a531032ad1f475995f2a76207576ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Pi=C3=B1a?= Date: Sun, 14 Aug 2022 12:47:29 +0200 Subject: [PATCH] Remove dynamic prefix in debug configuration providers --- .../configuration/dynamicdebugConfigurationService.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/debugger/extension/configuration/dynamicdebugConfigurationService.ts b/src/client/debugger/extension/configuration/dynamicdebugConfigurationService.ts index 450b7e5ee032..cc42bf8ae662 100644 --- a/src/client/debugger/extension/configuration/dynamicdebugConfigurationService.ts +++ b/src/client/debugger/extension/configuration/dynamicdebugConfigurationService.ts @@ -25,7 +25,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf const providers = []; providers.push({ - name: 'Dynamic Python: File', + name: 'Python: File', type: DebuggerTypeName, request: 'launch', program: '${file}', @@ -35,7 +35,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf const djangoManagePath = await this.getDjangoPath(folder); if (djangoManagePath) { providers.push({ - name: 'Dynamic Python: Django', + name: 'Python: Django', type: DebuggerTypeName, request: 'launch', program: `${workspaceFolderToken}${this.pathUtils.separator}${djangoManagePath}`, @@ -48,7 +48,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf const flaskPath = await this.getFlaskPath(folder); if (flaskPath) { providers.push({ - name: 'Dynamic Python: Flask', + name: 'Python: Flask', type: DebuggerTypeName, request: 'launch', module: 'flask', @@ -69,7 +69,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf .replaceAll(this.pathUtils.separator, '.') .replace('.py', ''); providers.push({ - name: 'Dynamic Python: FastAPI', + name: 'Python: FastAPI', type: DebuggerTypeName, request: 'launch', module: 'uvicorn',