Skip to content
Snippets Groups Projects
Commit 620d102a authored by red-agent's avatar red-agent
Browse files

Fixed a typo

parent 6a20a33b
No related branches found
No related tags found
No related merge requests found
...@@ -347,7 +347,7 @@ class CommandProcessor(object): ...@@ -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): ...@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment