Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #11 from makiwara/master
Browse files Browse the repository at this point in the history
Fixes #8, #10: typo of 'executer' → 'executor'
  • Loading branch information
dmytrohoi committed Jul 22, 2023
2 parents 5bd1d3b + b34881f commit c193c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/framework/command_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def onCommand(self, sender, command, label, args):
if isfunction(command_.executor):
return command_.executor(sender, command, label, args)

executor = getattr(self, command_.executer)
executor = getattr(self, command_.executor)
return executor(sender, command, label, args)

def onTabComplete(self, sender, command, alias, args):
Expand Down

0 comments on commit c193c19

Please sign in to comment.