forked from mirrors/qmk_userspace
		
	add doctor to safe_commands (#13324)
This commit is contained in:
		
					parent
					
						
							
								61ec0023c4
							
						
					
				
			
			
				commit
				
					
						7c2bd4dd88
					
				
			
		
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -22,6 +22,7 @@ safe_commands = [
 | 
			
		|||
    # A list of subcommands we always run, even when the module imports fail
 | 
			
		||||
    'clone',
 | 
			
		||||
    'config',
 | 
			
		||||
    'doctor',
 | 
			
		||||
    'env',
 | 
			
		||||
    'setup',
 | 
			
		||||
]
 | 
			
		||||
| 
						 | 
				
			
			@ -190,7 +191,7 @@ for subcommand in subcommands:
 | 
			
		|||
    try:
 | 
			
		||||
        __import__(subcommand)
 | 
			
		||||
 | 
			
		||||
    except ModuleNotFoundError as e:
 | 
			
		||||
    except (ImportError, ModuleNotFoundError) as e:
 | 
			
		||||
        if safe_command:
 | 
			
		||||
            print(f'Warning: Could not import {subcommand}: {e.__class__.__name__}, {e}')
 | 
			
		||||
        else:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue