Removed descr from command props

This commit is contained in:
2017-01-24 21:13:20 +01:00
parent 809c04abfa
commit c7b1a637c2
3 changed files with 2 additions and 7 deletions

View File

@ -132,7 +132,6 @@ class Context
$info = $this->commandInfo[$command];
$args = array_key_exists("args",$info)?$info['args']:"";
$help = array_key_exists("help",$info)?$info['help']:"";
$help = $help?:(array_key_exists("descr",$info)?$info['descr']:"");
$ret[trim("{$command} {$args}")] = $help;
}
return $ret;