Skip to content

Commit 837dc87

Browse files
authored
Merge pull request #270 from sgrtye/fixPythonDebugSyntax
Correct syntax error for python debug entry
2 parents 21cceb5 + ea901f9 commit 837dc87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/debug/entry/python3/entry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def parseParameter(index, paramType, param):
268268
}
269269
switchfun = switch.get(paramType, 0)
270270

271-
if switchfun is 0:
271+
if switchfun == 0:
272272
result = parseSpecialParameter(index, paramType, param)
273273
if result is None:
274274
onParameterTypeError(paramType)

0 commit comments

Comments
 (0)