mirror of
				https://github.com/jlu5/PyLink.git
				synced 2025-11-04 08:57:25 +01:00 
			
		
		
		
	utils: unregisterService should be case insensitive
This commit is contained in:
		
							parent
							
								
									df41dabb71
								
							
						
					
					
						commit
						4f26a29196
					
				
							
								
								
									
										1
									
								
								utils.py
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								utils.py
									
									
									
									
									
								
							@ -364,6 +364,7 @@ def registerService(name, *args, **kwargs):
 | 
			
		||||
def unregisterService(name):
 | 
			
		||||
    """Unregisters an existing service bot."""
 | 
			
		||||
    assert name in world.services, "Unknown service %s" % name
 | 
			
		||||
    name = name.lower()
 | 
			
		||||
    sbot = world.services[name]
 | 
			
		||||
    for ircnet, uid in sbot.uids.items():
 | 
			
		||||
        world.networkobjects[ircnet].proto.quit(uid, "Service unloaded.")
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user