Skip to content
Snippets Groups Projects
Commit 085e9805 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Fix python error

parent 65545ccb
Branches
Tags
1 merge request!701RPC Module
......@@ -66,14 +66,14 @@ def main():
for line in args["path"].readlines():
# An example line is "// skipped field AdminKeysUpdateJSON.ChannelId with unsupported type: *gitlab.com/xx_network/primitives/id.ID"
if line.startswith("// skipped "):
execption = False
skip = False
for e in exceptions:
if e in line:
exception = True
skip = True
break
if exception:
if skip:
continue
parts = line.split(" ", 4)
type = parts[2]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment