fix help message when trying to run a plugin name

develop
myk002 2022-07-22 20:57:19 -07:00
parent 5dde613a12
commit cb3e537b38
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -1227,7 +1227,7 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v
con.printerr("that is not loaded - try \"load %s\" or check stderr.log\n",
first.c_str());
else if (p->size())
con.printerr("that implements %zi commands - see \"ls %s\" for details\n",
con.printerr("that implements %zi commands - see \"help %s\" for details\n",
p->size(), first.c_str());
else
con.printerr("but does not implement any commands\n");