[downloader/common] Fix possible negative sleep time in slow_down()
This commit is contained in:
		
							parent
							
								
									c7667c2d7f
								
							
						
					
					
						commit
						00cf122d7a
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -157,7 +157,7 @@ class FileDownloader(object):
 | 
			
		|||
            return
 | 
			
		||||
        speed = float(byte_counter) / elapsed
 | 
			
		||||
        if speed > rate_limit:
 | 
			
		||||
            time.sleep((byte_counter / rate_limit) - elapsed)
 | 
			
		||||
            time.sleep(max((byte_counter / rate_limit) - elapsed, 0))
 | 
			
		||||
 | 
			
		||||
    def temp_name(self, filename):
 | 
			
		||||
        """Returns a temporary filename for the given filename."""
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue