Generate: Prevent ini Files from Being Included in YAML Discovery (#4127)
* Prevent ini files from being included in YAML discovery * Update Generate.py Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com> --------- Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									1323474a52
								
							
						
					
					
						commit
						931e335155
					
				| 
						 | 
				
			
			@ -110,7 +110,7 @@ def main(args=None) -> Tuple[argparse.Namespace, int]:
 | 
			
		|||
    player_files = {}
 | 
			
		||||
    for file in os.scandir(args.player_files_path):
 | 
			
		||||
        fname = file.name
 | 
			
		||||
        if file.is_file() and not fname.startswith(".") and \
 | 
			
		||||
        if file.is_file() and not fname.startswith(".") and not fname.lower().endswith(".ini") and \
 | 
			
		||||
                os.path.join(args.player_files_path, fname) not in {args.meta_file_path, args.weights_file_path}:
 | 
			
		||||
            path = os.path.join(args.player_files_path, fname)
 | 
			
		||||
            try:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue