fix off by one inside
This commit is contained in:
parent
2560d503d7
commit
58a45d1f15
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ for f in files:
|
|||
if i >= 3 and tokens[i - 3]['value'] + tokens[i - 2]['value'] \
|
||||
+ tokens[i - 1]['value'] + tokens[i]['value'] == 'Ox._(':
|
||||
inside = True
|
||||
level = 0
|
||||
level = 1
|
||||
elif inside:
|
||||
if token['value'] == '(':
|
||||
level +=1
|
||||
|
|
Loading…
Reference in a new issue