Skip to content

Commit e38cf26

Browse files
committed
fixes the base
1 parent e8b5ab8 commit e38cf26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension/debugger/adapter/factory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export class DebugAdapterDescriptorFactory implements IDebugAdapterDescriptorFac
181181
if (interpreter) {
182182
if (
183183
(interpreter.version?.major ?? 0) < 3 ||
184-
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) <= 9)
184+
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) <= 8)
185185
) {
186186
this.showDeprecatedPythonMessage();
187187
}

0 commit comments

Comments
 (0)