[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
 | 
			
		||||
			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]
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue