updates random word generator
This commit is contained in:
		
							
								
								
									
										3
									
								
								bump/bump.py
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
									
										3
									
								
								bump/bump.py
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							@@ -117,11 +117,10 @@ class Bump:
 | 
			
		||||
 | 
			
		||||
    def _generate_keywords(self) -> str:
 | 
			
		||||
        pattern = re.compile('^[a-zA-Z]+$')
 | 
			
		||||
        WORDS = r.get_random_words()
 | 
			
		||||
        secret = ""
 | 
			
		||||
        word_count = 0
 | 
			
		||||
        while word_count < SENDER_LENGTH + PASSWORD_LENGTH:
 | 
			
		||||
            word = random.choice(WORDS)
 | 
			
		||||
            word = r.get_random_word() 
 | 
			
		||||
            if pattern.match(word) and len(word) < 10 and len(word) >= 4:
 | 
			
		||||
                secret += word + "-"
 | 
			
		||||
                word_count += 1
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user