1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 22:06:38 +02:00

Fix extra space in the unknown command error message

This commit is contained in:
Adam
2014-01-26 01:14:58 -05:00
parent a29b7897f0
commit 87230c17b7
+1 -1
View File
@@ -218,7 +218,7 @@ void Command::Run(CommandSource &source, const Anope::string &message)
if (it == source.service->commands.end())
{
if (has_help)
source.Reply(_("Unknown command \002%s\002. \"%s %s HELP\" for help."), message.c_str(), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
source.Reply(_("Unknown command \002%s\002. \"%s%s HELP\" for help."), message.c_str(), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
else
source.Reply(_("Unknown command \002%s\002."), message.c_str());
return;