mirror of https://gitee.com/openkylin/libvirt.git
scripts: apibuild: fix spacing
Syntax check reports: E226 missing whitespace around arithmetic operator Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
81b63c3d78
commit
c066cb6dc1
|
@ -604,10 +604,10 @@ class CLexer:
|
|||
continue
|
||||
|
||||
j = i
|
||||
while (j + 1) < nline and line[j+1] in "+-*><=/%&!|":
|
||||
while (j + 1) < nline and line[j + 1] in "+-*><=/%&!|":
|
||||
j = j + 1
|
||||
|
||||
self.tokens.append(('op', line[i:j+1]))
|
||||
self.tokens.append(('op', line[i:j + 1]))
|
||||
i = j + 1
|
||||
continue
|
||||
s = i
|
||||
|
|
Loading…
Reference in New Issue