make info command match help text
This commit is contained in:
parent
2197b15012
commit
81417a5031
1 changed files with 2 additions and 2 deletions
|
@ -36,10 +36,10 @@ class ET extends Extension
|
|||
public function onCommand(CommandEvent $event)
|
||||
{
|
||||
if ($event->cmd == "help") {
|
||||
print "\tget-info\n";
|
||||
print "\tshimmie-info\n";
|
||||
print "\t\tList a bunch of info\n\n";
|
||||
}
|
||||
if ($event->cmd == "info") {
|
||||
if ($event->cmd == "shimmie-info") {
|
||||
print($this->to_yaml($this->get_info()));
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue