fix exeption handling in case of empty announce list
This commit is contained in:
		@@ -135,7 +135,10 @@ def createNewTorrent(reuqest):
 | 
				
			|||||||
	try:
 | 
						try:
 | 
				
			||||||
		announce = bcoded[b'announce-list']
 | 
							announce = bcoded[b'announce-list']
 | 
				
			||||||
	except KeyError:
 | 
						except KeyError:
 | 
				
			||||||
		announce = (bcoded[b'announce'], )
 | 
							try:
 | 
				
			||||||
 | 
								announce = (bcoded[b'announce'], )
 | 
				
			||||||
 | 
							except KeyError:
 | 
				
			||||||
 | 
								announce = []
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	is_ours = False
 | 
						is_ours = False
 | 
				
			||||||
	for a in announce:
 | 
						for a in announce:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user