vpc_parser: typo fix

This commit is contained in:
nillerusr 2021-11-05 10:54:43 +03:00
parent 1b98e8994e
commit 29c83b7867

View File

@ -38,7 +38,7 @@ def compute_statement( defines, statement ):
for token in token_list: for token in token_list:
r = token.search(statement, pos) r = token.search(statement, pos)
if r and r.start() == pos: if r and r.start() == pos:
l += [r.group(0)]] l += [r.group(0)]
pos = r.end() pos = r.end()
k = 0 k = 0