Skip to content
Snippets Groups Projects
Commit 38753884 authored by roidelapluie's avatar roidelapluie
Browse files

[davux] correct a loop in logger.py. Fix #3295.

parent 5c36dd8e
No related branches found
No related tags found
No related merge requests found
......@@ -668,7 +668,7 @@ class Logger:
i=0
identities=set()
features=set()
while i<len(data) and data[i]!='FEAT':
while i<(len(data)-2) and data[i]!='FEAT':
category=data[i]
type=data[i+1]
name=data[i+2]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment