[davux] correct a loop in logger.py. Fix #3295.
This commit is contained in:
		
							parent
							
								
									5c36dd8e78
								
							
						
					
					
						commit
						3875388496
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -668,7 +668,7 @@ class Logger:
 | 
				
			||||||
			i=0
 | 
								i=0
 | 
				
			||||||
			identities=set()
 | 
								identities=set()
 | 
				
			||||||
			features=set()
 | 
								features=set()
 | 
				
			||||||
			while i<len(data) and data[i]!='FEAT':
 | 
								while i<(len(data)-2) and data[i]!='FEAT':
 | 
				
			||||||
				category=data[i]
 | 
									category=data[i]
 | 
				
			||||||
				type=data[i+1]
 | 
									type=data[i+1]
 | 
				
			||||||
				name=data[i+2]
 | 
									name=data[i+2]
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue