Fixed a typo
This commit is contained in:
		
							parent
							
								
									6a20a33b70
								
							
						
					
					
						commit
						620d102ac5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -347,7 +347,7 @@ class CommandProcessor(object):
 | 
				
			||||||
    EXPAND_SHORT_OPTIONS = True
 | 
					    EXPAND_SHORT_OPTIONS = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    COMMAND_PREFIX = '/'
 | 
					    COMMAND_PREFIX = '/'
 | 
				
			||||||
    CASE_SENVITIVE_COMMANDS = False
 | 
					    CASE_SENSITIVE_COMMANDS = False
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ARG_ENCODING = 'utf8'
 | 
					    ARG_ENCODING = 'utf8'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -366,7 +366,7 @@ class CommandProcessor(object):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @classmethod
 | 
					    @classmethod
 | 
				
			||||||
    def prepare_name(cls, name):
 | 
					    def prepare_name(cls, name):
 | 
				
			||||||
        return name if cls.CASE_SENVITIVE_COMMANDS else name.lower()
 | 
					        return name if cls.CASE_SENSITIVE_COMMANDS else name.lower()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @classmethod
 | 
					    @classmethod
 | 
				
			||||||
    def retrieve_command(cls, name):
 | 
					    def retrieve_command(cls, name):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue